I Imran Koradia Nov 3, 2004 #2 Set the WindowState property of the Form to Maximized: ofrm.WindowState = FormWindowState.Maximized hope that helps.. Imran.
Set the WindowState property of the Form to Maximized: ofrm.WindowState = FormWindowState.Maximized hope that helps.. Imran.
H Herfried K. Wagner [MVP] Nov 3, 2004 #3 Mark said: If my application gets minimized, how can I maximize it again? Click to expand... Add a handler to the form's 'Resize' event: \\\ If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Maximized End If ///
Mark said: If my application gets minimized, how can I maximize it again? Click to expand... Add a handler to the form's 'Resize' event: \\\ If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Maximized End If ///