Maximize/Minimize form without API

  • Thread starter Thread starter Adam Honek
  • Start date Start date
A

Adam Honek

Hi all,

Is there an inherent function within a form object to maximize and minimize
it?

Or must we use the API using SendMessage?

I can't seem to see anything from the list.

Thanks,
Adam
 
Adam said:
Hi all,

Is there an inherent function within a form object to maximize and minimize
it?

Or must we use the API using SendMessage?

I can't seem to see anything from the list.

Thanks,
Adam

Use -

WindowState = FormWindowState.Maximized / .Minimized / .Normal

ShaneO

There are 10 kinds of people - Those who understand Binary and those who
don't.
 
Thanks a lot, works great.

To make it obvious I've added the "me." at the beginning.

Adam
 
Back
Top