How to customize the form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am creating windows form at the run time and also i am setting the
FormBorderStyle to FixedSingle. So that the form comes with some standard
size, but i wanted to customize the form size.. How can i customize the form
size with FormBorderStyle property as FixedSingle.. Even when i tried with
setting form size to some less value but still it is coming with the standard
size,, Could you please help me out in this

Regards
 
To be able to set the form's Size and Location properties and have
them take effect, you must also set the StartPosition property to
FormStartPosition.Manual before you show the form.

=======================
Clay Burch
Syncfusion, Inc.
 
Back
Top