Subject Re: [IBO] Disable multiselect?
Author Lucas Franzen
Salvatore,

Salvatore Besso schrieb:
> hello all,
>
> good Easter.
>
> Is there any property or method that I've missed to disable multiselect in an
> TIB_Query? I'd like that if the user tries to multiselect, nothing happens,
> that's to say I want that the row will not highlight. I have tried this in the
> OnMultiSelect handler of the query:
>
> if SomeCondition then
> Abort
>
> but it doesn't work and the row has been selected.


it's much easier than everything you tried, though it's well hidden:

Set the IndicateSelected property of the TIB_Grid that's bound to your
TIB_Query to FALSE;

MultiSelect is sth. that the visual control is handling, not the query
component itself.

Luc.