Hello,
for Split DB it can be done by code.
An Example:
Tablename = Persons
Column #1 = SN
Column #2 = FN
To add a description to the columns execute once this code:Then save and close the .odb file.
On reopen you should find the desciptions in the tables definition. R
for Split DB it can be done by code.
An Example:
Tablename = Persons
Column #1 = SN
Column #2 = FN
To add a description to the columns execute once this code:
Code:
sub SET_HelpText thisDatabasedocument.DataSource.Tables.getbyname("Persons").Columns.getbyname("SN").HelpText = "This Column holds surnames" thisDatabasedocument.DataSource.Tables.getbyname("Persons").Columns.getbyname("FN").HelpText = "This Column holds firstnames"end sub
On reopen you should find the desciptions in the tables definition. R
Statistics: Posted by F3K Total — Tue Dec 17, 2024 6:47 pm