When using ListBox1->MultiSelect = true; I can select several elements only when Shift is pressed.
How to set up multiple selections with a simple mouse click, without keyboard modifiers?
When using ListBox1->MultiSelect = true; I can select several elements only when Shift is pressed.
How to set up multiple selections with a simple mouse click, without keyboard modifiers?
It is necessary to set the ListBox1->ExtendedSelect=false; property ListBox1->ExtendedSelect=false;
Apparently, the property you are interested in is called MultiSelectStyle . And although the certificate is not replete with details:
Embarcadero Technologies doesn’t have any additional information. Please help us document this topic by using the discussion page!
setting the Extended value for it seems to solve the problem.
Source: https://ru.stackoverflow.com/questions/625888/
All Articles