Equinox Online Help - Language Reference - A to Z

Home

NameFromTableID

Applies to
SyntaxNameFromTableId (TableNumber)
Action[Function] Returns a string name for a table number.
ScopeUsable anywhere
Notes

This function returns a table name from a numeric variable passed via the TableNumber parameter. The string returns the name of the table assigned within Equinox. It is similar to the function NameFromTable, which takes a table variable as its parameter

CategoryRecord navigation
See Also NameFromTable, TableFromName
Example

The following example returns the name of the first 50 tables in the current application.

string TblNme
number i

for i = 1 to 50
TblNme = NameFromTableId(i)
print "Table ID: " & i & ", = Table Name: " & TblNme
next i