i'm using a GridControl which behaves much like a listbox.
The user can select a range of rows using the shift key and he can also select multiple individual rows with the ctrl key.
I've set the folowing properties :
- ListBoxSelectionMode = MultiExtended;
- AllowSelection = alphablent, row, multiple, shift, keyboard;
- ControllerOptions = ClickCells, SelectCells;
Is there a way to disable the multiple selection then the user clicks on a cell and drags the mouse and have it behade like SelectionMode.One instead?
Olivier