form sizing

I have a form, set at 640x480 in the developer and place all controls within this space.

Now I change to the browse screen (or start up a client) and guess what: My screen is now slightly shorter(eg some controls break) and a lot wider. I think it is something like 630 x 530 or so…

Is this normal and do I forget sometething? Or… is there something wrong?

I develop with c5 and under OS X (10.3 but under 10.2 it was the same)…

Hope somebody can help me here…

Ciao,

Marcel

Not sure what behaviour you expect but maybe this info will help

You can set the form width en height in the designer.
The width and height of your window however, doesn’t follow the formsettings.

If you want to set window to same size as form you can
use following method. (for instance as startupscript)
//Set the window size
application.setWindowSize(400,400);

FYI:
application.setFormSize is also on the list of requested features

Thanks for the info,

Marcel