I click on my button to open a file then it minimizes the file, I would also like the active screen I was currently working on to maximize instead of partially showing up in my window. This is the macros I'm currently using. Need help in modifying it the VBA to maximize the active workbook. Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Workbooks.Open "P:\Procedures\Product Outlines\DRIVE\DRIVE_LINKS\DRIVE_PICS.xls"
ActiveWindow.WindowState = xlMinimized
Application.ScreenUpdating = True
End Sub
Application.ScreenUpdating = False
Workbooks.Open "P:\Procedures\Product Outlines\DRIVE\DRIVE_LINKS\DRIVE_PICS.xls"
ActiveWindow.WindowState = xlMinimized
Application.ScreenUpdating = True
End Sub