Desktop form size

Pachuquin

Member
Licensed User
Longtime User
How can I change the size of a Desktop form during runtime?

I have written a library to get the screen size, but i now need to change the form size to display it at fullscreen.

Thanks

Excuse my english.
 

agraham

Expert
Licensed User
Longtime User
You can't normally change the size of a Form on the desktop at runtime. Actually you can by changing properties with the Door library but it looks awful because a Basic4ppc Form paints its' background using the fore and back drawing layers and these are fixed at compile time because a Basic4ppc Form is really intended for use on device screens.

For a form that behaves more like a normal Windows Form you need to use my http://www.b4x.com/forum/additional...formexdestop-controlsexdesktop-libraries.html
 
Top