Why doesn't my scrollbars show on my form (VFP 8)?
Below is an example of code where I have a grid larger than the width
and height of my form, but the scrollbars do not show on my form!
What am I missing here? THX - Mike Farnesi
MYFORM=CREATEOBJECT('FORM')
WITH MYFORM
.SCROLLBARS=2
.ADDOBJECT('MYGRID','GRID')
WITH .MYGRID
.TOP=0
.LEFT=0
.WIDTH=2000
.HEIGHT=2000
.VISIBLE=.T.
ENDWITH
.SHOW
ENDWITH