fhOutputResultSetColumn hidden column for sorting
Posted: 11 May 2023 21:52
According to the help, the final argument to fhOutputResultSetColumn is strVisibility:
I'm having trouble with this. This works:
but adding 'hide'
gives this error
Have I specified this argument incorrectly?
The options listed are 'show' (default), 'hide' and 'buddy'.strVisibility
string: Indicates whether column is visible, or some kind of hidden column
I'm having trouble with this. This works:
Code: Select all
fhOutputResultSetColumn('ErrNo', 'integer', gtblIssues.tblErrNo, rows, 10, 'align_right', 4, 'integer')Code: Select all
fhOutputResultSetColumn('ErrNo', 'integer', gtblIssues.tblErrNo, rows, 10, 'align_right', 4, 'integer', 'hide')Have I specified this argument incorrectly?