Let’s Get Started: Drawing On A Form
VB6: The form is logically divided into a grid, and a position is designated by how many grid points it is from the Left and the Top
- The upper left corner is position (0,0)
- The position (x, y) is x units from Left, and y units from Top
- Increasing the x value moves to the right
- Unlike graphing, though, increasing
the y value moves down
- The lower right corner is
position (ScaleWidth, ScaleHeight)
- To resize the form, change
ScaleWidth and ScaleHeight
- To make the window the size
of the display set WindowState = 2