Subject Re: [IBO] TIB_Grid: Number of selected rows?
Author Harald Klomann
mario.zimmermann@... wrote:
>
>
> How can I simply determine the number of selected rows?
>

Mario,

i use following code for this :

MyStringList.Clear;
IB_Query.SelectedBookmarks(MyStringList);
if MyStringList.Count >0 then ..........

MyStringList.Count is only >0 if more then one record is selected !


Anyone has a better solution ?


Harald