I have two tables which have the same fields structure.
The same screen and the same TUniTable component is used for the two tables.
When the screen is opened, i change TUniTable property.
It works very well for the first table.
But when i change to the second, my fields are not available.
This does not work:
Code: Select all
MyTableField1.Value:='test';Code: Select all
MyTable.FieldByName('Field1').asstring:='test';Is it a TUnitable bug ?
Thanks