Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / Design Time / March 2007

Tip: Looking for answers? Try searching our database.

How to customize the form

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Saravanan - 23 Feb 2007 07:16 GMT
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

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.