putting focus on a smart browse

Deepak Joshi

New Member
can anyone tell me how to put focus on the first record of a smart browse with that record active.(ie.a dashed line around the record) All I get is a highlighted record but not an active record.

Thanks,
 

pejgan

New Member
maybe..

I have no Idea if this is what you're looking for but here goes:

/* Select the first row in browser */
REPOSITION browse-1 TO ROW 1.

/* Make it active */
APPLY "entry" TO browse-1.
 
Top