Is it possible to use scrollbars only if screenwidth is to small?
I designed forms for 768 width
I recent had to use old laptop with only 800x600 screen.
Then I got idea to dynamicly use form scrollbars.
Put code in init but no effect.
Also tried in load again no succes.
Is this ompossible?
TIA
-Bart
I designed forms for 768 width
I recent had to use old laptop with only 800x600 screen.
Then I got idea to dynamicly use form scrollbars.
Put code in init but no effect.
Also tried in load again no succes.
Is this ompossible?
TIA
-Bart
Code:
LOCAL lnScreenWidth
lnScreenWidth = SYSMETRIC(1)
=MESSAGEBOX(TRANSFORM(lnScreenWidth))
IF lnScreenWidth <= 600
thisform.ScrollBars = 1
ENDIF