On loading, I want my program to be positioned at a certain spot in the upper left corner of the screen, just below the Form Caption of a maximized form. How can I do this?
Printable View
On loading, I want my program to be positioned at a certain spot in the upper left corner of the screen, just below the Form Caption of a maximized form. How can I do this?
Set the LEFT and TOP property of the Form you wish to load.
e.g.
Private sub Form_Load()
Me.Left=10
Me.Top=10
End Sub