Center a form
This is, I think, the easiest way to center a form. It is the way reccomended by Microsoft and Microsoft Press. Just stick it into your form_load.
Assumes
just stick this into your form_load place! Easy!
Rate Center a form
(12(12 Vote))
Private Sub Form_Load
Left = (Screen.Width - Width) \ 2
Top = (Screen.Height - Height) \ 2
End Sub
Center a form Comments
No comments yet — be the first to post one!
Post a Comment