I have tried to change a column title on the fly with no luck.
Is this the correct method .. what am I missing
Many thanks .. Cheers
B4X:
Private DateColumn As B4XTableColumn 'Global declaration
Sub Activity_Create(FirstTime As Boolean)
DateColumn = B4XTable1.AddColumn("Date", B4XTable1.COLUMN_TYPE_TEXT)
'.....................
'then somewhere later ....
DateColumn.Title = "Date Recieved"
Is this the correct method .. what am I missing
Many thanks .. Cheers