How to Center the form relative to Screen
Posted on January 4, 2009
1 2 3 4 5 6 | 'Forms - How to Center the form relative to Screen Option Explicit Public Sub CenterForm(frm As Form) frm.Move (Screen.Width - frm.Width) / 2, (Screen.Height - frm.Height) / 2 End Sub |