OK, but if you know that you don't want scrollbars when you define the browse you can do something like this.
Define two browses in the resource file, one with scrollbars and one without. Then in your code do:
- Code: Select all Expand view
- if lWantScrollbars
redefine xbrowse oBrw ID 101... // has scrollbars
else
redefine xbrowse oBrw ID 102... // no scrollbars
endif
Regards,
James