I have two forms .In main form i have a button which i open u the second form but what i need is when the form2 is visible it should not be resized or even minimized as well as when i click outside the form2 it should not lose it's focus same like Taskmanager (Ctrl Alt Delete) ..How to do it ?
.Net Noobler Thursday, September 24, 2009 8:15 AM
Hi, use form2.ShowDialog();
Form2 frm2 = new Form2();
frm2.MinimizeBox = false;
frm2.ShowDialog();
Best Regards, C.Gnanadurai ----------------------- Please mark the post as answer if it is helpfull to you
Proposed As Answer byGnanaduraiThursday, September 24, 2009 10:00 AM