Subject | Re: [IBO] TTable to TIBOTable |
---|---|
Author | henry FRANQUET |
Post date | 2003-07-22T13:27:11Z |
Yes I use both of these units.
I've looked with the object's explorator and I've seen that this
methode is protected in TIBOTables whereas in TTables it is public...
So I guess I have to subclasse to expose the method... :(
Thanks
I've looked with the object's explorator and I've seen that this
methode is protected in TIBOTables whereas in TTables it is public...
So I guess I have to subclasse to expose the method... :(
Thanks
--- In IBObjects@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> 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