Action Statement
Change the parameter string of a column.
make column COL_ID of TABLE_NAME parameter PAR_STRING
COL_ID
The identifier for the column whose parameters you want to change.
TABLE_NAME
The identifier for a table.
PAR_STRING
The new parameter string for the column.
Description
Use this statement to change the parameter string of a column.
Example
response to item ColParam from Menu
action GetColStr
if (InputOK) then
copy "make column " X " of Table parameter \"" Str "\""
to MsgStr
action SendMsg
make column X of Table parameter Str
end if # InputOK