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 / WinForm Controls / February 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
ClayB - 23 Feb 2007 13:07 GMT
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.
Saravanan - 24 Feb 2007 07:10 GMT
ya, i am setting the StartPosition to FormStartPosition.Manual. but i  dont
have the control over the intiital form size,

> 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
[quoted text clipped - 3 lines]
> Clay Burch
> Syncfusion, Inc.
Herfried K. Wagner [MVP] - 24 Feb 2007 12:36 GMT
"Saravanan" <Saravanan@discussions.microsoft.com> schrieb:
> ya, i am setting the StartPosition to FormStartPosition.Manual. but i
> dont
> have the control over the intiital form size,

Please describe how you are attempting to set the form size.

Signature

M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://dotnet.mvps.org/dotnet/faqs/>

Saravanan - 26 Feb 2007 03:43 GMT
Hi,

I am setting the form size as like this

Form  aForm = new Form();
 aForm.BackColor = Color.WhiteSmoke;
 aForm.Location = new Point(100, 100);
 aForm.StartPosition = FormStartPosition.Manual;
 aForm.Size = new Size(10,10);
           aForm.AutoSize = true;
           aForm.ClientSize = new Size(10, 10);
           aForm.ControlBox = false;
aForm.FormBorderStyle = FormBorderStyle.FixedSingle;

> "Saravanan" <Saravanan@discussions.microsoft.com> schrieb:
> > ya, i am setting the StartPosition to FormStartPosition.Manual. but i
> > dont
> > have the control over the intiital form size,
>
> Please describe how you are attempting to set the form size.

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.