Selecting multi columns on a browser

Rachael Sherry

New Member
Hi all
I have created a browser at run time, it would have about 20 columns on it and what I want is to be able to select more than one column at a time so that I can export the selected columns to excel.
Would anyone have anyidea of how to enable a browser for multi column select. I already have it setup for multi row selection.
Here is the setup of the browsers.
Thanks
Rachael

CREATE BROWSE brTable
ASSIGN FRAME = FRAME {&FRAME-NAME}:HANDLE
COLUMN = 64
ROW = 4.57
WIDTH = 100
HEIGHT = 15.71
VISIBLE = NO
SENSITIVE = TRUE
SEPARATORS = YES
MULTIPLE = YES
COLUMN-RESIZABLE = YES
TRIGGERS:
ON 'ROW-DISPLAY' PERSISTENT RUN displayTheRow IN THIS-PROCEDURE.
ON 'START-SEARCH':U PERSISTENT RUN startSearch IN THIS-PROCEDURE.
END TRIGGERS.
 
Back
Top