Available in:
Apps (win)
Apps (char)
Reportwriter
RPC
Standalone PL
X
X
X
X
expr list_view(list-name,ret-col[,view-col,...]) list list-name expr ret-col,view-col
list-name | specifies the list.
|
ret-col | is the absolute zero-based column position of the data to be
returned.
|
view-col | (optional) specifies which columns to display. Column numbers can be any expression that evaluates to either an integer or a char string containing space-delimited integers or any combination of these. The default is all columns. |
xx = list_open("SELECT code,description FROM parts",1000,"Parts"); code = list_view(xx,0,1);