I have a Userform opens automatically when opening an excel file. It has some display problems, as the option buttons disappear when scrolling down the form. this problem only occurs when i have 2 monitors (main and secondary). I noticed these two scenarios:
So,my questions is:
Is there any way to force Excel to be opened as full screen in the main screen?
Add this to the Workbook_Open()
event procedure, and you'll be able to open the workbook in full-screen mode on the primary monitor.
Private Sub Workbook_Open()
Application.Top = 0
Application.Left = 0
Application.DisplayFullScreen = True
End Sub