Multiple selection?

dayv2005

Member
Nt qite sure what you mean but if its whati think then go to the browsers properties. And make sure you check multiple selection. THis makes it so you can select more than one row at a time.

Next you need some code.

DEFINE VARIABLE X AS INTEGER NO-UNDO.

DO X = 1 TO br-Filenames:NUM-SELECTED-ROWS:

br-Filenames:FETCH-SELECTED-ROW(X).

GET CURRENT br-Filenames NO-LOCK.

/* do something */

END.
 
Top