Smart display of records with selection and display on condition.
The Display method lets the user view the RecordSet limiting rows and columns directly without requiring separate selection code.
Argument | Data Type | Description |
---|---|---|
Title | CharString | Form title |
Selection | CharString | Selection Statement. I.e. (first 10) |
ColumnList | CharString | List of columns. '' returns all or comma separated list. I.e. 'LOANID,CURBAL,MTDATE' |
ShowFlag | Boolean | Flag if form to be shown. |
rs←CasSession.GetCurrentFile''
rs.Display'test' 'first 10' '' 0
rs.Display'test' 'first 10' '' 1
D ← Boolean.New 1
rs.Display'test' 'first 10' 'LOANID,CURBAL,MTDATE' D