Subject RE: [IBO] TIB _Query change the field sequence
Author IBO Support List
If you are using a Grid you may want to use the GridLinks property on the grid itself.
 
Jason
 


From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com]
Sent: Tuesday, May 27, 2014 8:56 AM
To: IBObjects@yahoogroups.com
Subject: RE: [IBO] TIB _Query change the field sequence

Hello Jason,


i try this:

my field sequence is Field1, Field2, Field3

qr1.FieldsIndex.BeginUpdate;

qr1.FieldsIndex.Clear;

qr1.FieldsIndex.Add('Field3');

qr1.FieldsIndex.Add('Field2');

qr1.FieldsIndex.Add('Field1');

qr1.FieldsIndex.EndUpdate;

The Grid shows Field1, Field2, Field3


Do you have an idea?

Regards, Kostas