Subject TIBOTable - Removing fields in code?
Author Joe Martinez
If I drop a TIBOTable on my form, I can use the Fields Editor to remove
fields that I don't want to be queried from the server. However, if I
create the TIBOTable in code, like:

TIBOTable* ProductTable = new TIBOTable(this);
ProductTable->DatabaseName = "SMRDBS_MAN";
ProductTable->TableName = "PRODUCTS";

How can I emulate in code what the Fields Editor does? I just want to
remove a couple of fields from it.

Thanks,
Joe