To let the user move a browse, you set the browse’s MOVABLE attribute to TRUE, as the following code fragment shows:

CustBrowse:MOVABLE = TRUE.

To move a browse at run time, the user drags the browse as desired. To move a browse programmatically, you set the browse’s X and Y attributes as desired.

The following code fragment programmatically moves a browse to the point (50,50) (in pixels) relative to the parent frame:

ASSIGN CustBrowse:X = 50
CustBrowse:Y = 50.