Subject | Re: [IBO] Selected rows in a TIB_Grid |
---|---|
Author | Helen Borrie |
Post date | 2004-12-19T15:33:55Z |
At 12:31 PM 19/12/2004 -0300, you wrote:
You took the words right out of my fingers...
Helen
>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