unmaximized form in cf 2.0

  • Thread starter Thread starter leibnizster
  • Start date Start date
L

leibnizster

hello,

is this possible? To have a form that doesn't take up the whole screen?
Can you set the size and location of it (if such a form exists)?

Thanks
 
Try:

this.ClientSize = new System.Drawing.Size(100, 100);

Or you can set the form's properties in the designer.

Mihai Tataran
 
Back
Top