how to minimize,maximize and restore my form
programmatically?



how to minimize,maximize and restore my form programmatically?..

Answer / kamal

See the below C# code.

// Minimize the form window
this.WindowState = FormWindowState.Minimized;

// Restore the form window
this.WindowState = FormWindowState.Normal;

// Maximize the form window
this.WindowState = FormWindowState.Maximized

Is This Answer Correct ?    9 Yes 3 No

Post New Answer

More Dot Net AllOther Interview Questions

How to send e-mail to gmail/yahoo or any other ID from your mail server.I need the code.

1 Answers  


Are there any third party logging components available?

0 Answers  


what are ACID properties ?

3 Answers  


What does this do? Gacutil /l | find /i "corillian"

0 Answers  


If I'm developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?

3 Answers   Hologic, Siebel,






How cache coherency is eliminated? : Dot net architecture

0 Answers  


Explain difference between inprocess vs out process session state? : .NET Architecture

0 Answers  


Explain different pipelining hazards? : Dot net architecture

0 Answers  


In LINQ TO SQL if it is possible to select the top 5 records from the particular table using select top 5.

1 Answers   Agiline,


What is a Windows Service and how does its lifecycle differ from a "standard" EXE?

2 Answers   Siebel Systems,


What are the different pipelining hazards? : Dot net architecture

0 Answers  


Explain .net mobile events? : Microsoft dot net mobile

0 Answers  


Categories