what is the maximum size of a vb.net form. So that it will consume the whole screen.
A:
It depends upon your screen-resolution, know your screen resolution, and you can resize it to that. Fortunately, you can just set WindowState
to Maximized
and vn.net will do it for you automatically.
Sarfraz
2010-02-23 13:28:36
You also need to learn to write precise, descriptive questions.
SLaks
2010-02-23 13:47:24
A:
You should use change the "WindowState" property. This will ensure the window is maximized independent of the screen resolution.
In code:
Me.WindowState = FormWindowState.Maximized
Tomas
2010-02-23 13:30:44