And i dont mean when it starts up.
VB Code:
Private Sub mnuViewFileEditorMode_Click() 'Size window according to users preference If mnuViewFileEditorMode.Checked = True Then mnuViewFileEditorMode.Checked = False Me.Width = 5730 ElseIf mnuViewFileEditorMode.Checked = False Then mnuViewFileEditorMode.Checked = True Me.Width = 11520 End If End Sub
This sizes my form when the menu is clicked, the problem is, sometimes my form is left right at the far left off the screen.
Is there any way to make it go to the center?
Thanks![]()





Reply With Quote