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 General / July 2007

Tip: Looking for answers? Try searching our database.

Was form miximized while closing?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Mahesh Nimbalkar - 25 Jul 2007 21:06 GMT
I want to store state of the form such as X and Y position, size, height of
GridView on this form when form is closed. Then on load I want to reload this
state.

The question is how do I know if form was in maximized state while closing
and would appreciate if you could point me to example of doing above task.

Signature

Thanks,
Mahesh

Chris Dunaway - 25 Jul 2007 21:21 GMT
On Jul 25, 3:06 pm, Mahesh Nimbalkar
<MaheshNimbal...@discussions.microsoft.com> wrote:
> I want to store state of the form such as X and Y position, size, height of
> GridView on this form when form is closed. Then on load I want to reload this
[quoted text clipped - 6 lines]
> Thanks,
> Mahesh

Have you looked at the WindowState property?

VB

   Private Sub Form1_FormClosing(...) Handles Me.FormClosing
       If Me.WindowState = FormWindowState.Maximized Then
           'Do something
       End If
   End Sub

C#
       private void Form1_FormClosing(object sender,
FormClosingEventArgs e) {
           if (this.WindowState == FormWindowState.Maximized) {
               //Do something
           }
       }

Chris

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.