hi everyone
i am making a program and in my view menu, i have a couple of options, 2 of which are Maximise and Minimise
What is the code to minimize/maximise the current form?
thanks in advance
cheers
patrick
Printable View
hi everyone
i am making a program and in my view menu, i have a couple of options, 2 of which are Maximise and Minimise
What is the code to minimize/maximise the current form?
thanks in advance
cheers
patrick
Hi,
Wich version is this, use the selecting buttons.
Wkr,
sparrow1
. visual studio 2005 express.
i wanted so when the user clicks the Maximise button, the program maximises, and when he clicks the minimise button, the program minimises to the taskbar
VB Code:
'for maximizing Me.WindowState = FormWindowState.Maximized 'for minimizing Me.WindowState = FormWindowState.Minimized
thanks