Subject Re: [IBO] TTable to TIBOTable
Author Helen Borrie
At 09:53 AM 22/07/2003 +0000, you wrote:
>I'd like to be agree that TIBOTable fully emulates TTable but the
>methode GetIndexNames doesn't existe in TIBOTable:
>
>here is my code:
>var
> tblSource : TIBOTable;
> cmbxSourceIndex : TComboBox;
>begin
> tblSource.GetIndexNames(cmbxSourceIndex.Items);
>
>here is the error returned:
>[ Error ] Batmove.pas(230): Identifier not declared: 'GetIndexNames'

Henry,
Is your problem that you have the relevant units missing from your uses
clause? You need to have these two (both):

..., IBODataset, DB, ...

Helen