Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sizable forms
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00866421
Message ID:
00866443
Views:
19
you can do it as the guys said. and Sergey is right the plain answer is NO.

However if what you're after is that the Form remains sizable in de Development environment even when you run the form. the suggestions of all guys won't help.

what I could suggest is that you test wether you're in Developmetn Environment or runtime. Thus your forms will remain sizable even if you run them if you're programming. and when you compile and build the exe when the user runs a form the form won't be sizable.

try this
*:Init method of the form
local llRuntime
llRuntime = Version(2) = 2

if llRuntime Then
    This.BorderStyle = 3
else 
    This.BorderStyle = 1
endif 
you won't be able to resize the forms when working at runtime (exe).

how about that
.......
DO WHILE .T.
      ME.Work()
ENDDO
Previous
Reply
Map
View

Click here to load this message in the networking platform