Consultor Eletrônico



Kbase P18716: How to select a set of rows in a multiple-selection browse using the 4GL?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   2/16/2005
Status: Verified

GOAL:

How to select a set of rows in a multiple-selection browse using the 4GL?

FACT(s) (Environment):

Progress 9.1D
Progress 9.1E
OpenEdge 10.x

FIX:

The following code shows how to programmatically select multiple rows in a browse widget:

DEFINE TEMP-TABLE ttRecid NO-UNDO FIELD rec_id AS RECID.FOR EACH ttRecid NO-LOCK: REPOSITION YourBrowseNameGoesHere TO RECID rec_id NO-ERROR.

YourBrowseNameGoesHere:SELECT-FOCUSED-ROW().


END.