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
Bryan Phillips - 14 Mar 2007 20:11 GMT
I was able to resize a FixedSingle form using the following code:
public static void Main()
{
Application.Run(new Form1());
}
public class Form1 : Form
{
public Form1(){
this.FormBorderStyle = FormBorderStyle.FixedSingle;
this.Load += new EventHandler(Form1_Load);
}
public void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Size is :" + this.Size);
this.Height -= 50;
this.Width -= 100;
MessageBox.Show("Size is :" + this.Size);
}
}
--
Bryan Phillips
MCSD, MCDBA, MCSE
Blog: http://bphillips76.spaces.live.com
> Hi,
>
[quoted text clipped - 6 lines]
>
> Regards