Subject Re: [IBO] Selected rows in a TIB_Grid
Author Helen Borrie
At 12:31 PM 19/12/2004 -0300, you wrote:

>Solved,
>
> TStringList *slFacturas = new TStringList;
> try{
> tbl->SelectedBookmarks(slFacturas);
> tbl->BeginBusy( False );
> for (int i=0; i < slFacturas->Count; i++){
> tbl->Bookmark = slFacturas->Strings[i];
> ShowMessage(tbl->FieldByName("NRO")->Value);
> }
> }
> __finally{
> tbl->EndBusy();
> delete slFacturas;
> }

:-)
You took the words right out of my fingers...

Helen