Can I make a mouse selection rectangle in a List View like in a SysListView32?

Is there a way to work with a SysListView32 and use it in Delphi?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to set
LVS_EX_DOUBLEBUFFERstyle of the list view (only applicable with comctl32.dll version 6.0 (XP) and later):It also works with the
TShellListViewcomponent included as a demo. See this answer to find out how to find and install the shell controls.(PS: Don’t forget to set
Multiselectto true)