Board index » cppbuilder » Generating Exe For Several Screen Size

Generating Exe For Several Screen Size


2003-09-11 09:36:34 PM
cppbuilder13
Hi all,
I'm trying to design GUI application with Borland and I wonder whether it
was possible to easily generate screens (composed with stringgrid, ...)
which
auto size to the screen size.
Thanks for your advice or help.
etienne
 
 

Re:Generating Exe For Several Screen Size

You mean, design a form called FormChild or something, put on the objects
you want, put in the code
you want on the form, then on the main form do:
FormChild *newForm = new FormChild(Application);
newForm->Left = 0;
newForm->Top = 0;
newForm->Width = Screen->Width;
newForm->Height = Screen->Height;
Thats what you need?
Alistair
"Etienne" < XXXX@XXXXX.COM >wrote in message
Quote
Hi all,

I'm trying to design GUI application with Borland and I wonder whether it
was possible to easily generate screens (composed with stringgrid, ...)
which
auto size to the screen size.

Thanks for your advice or help.

etienne