M mandarp22 Member Oct 29, 2017 #1 Hi All I have a Excel file with open event which hides the application and show only user form but the user form is small in size. I want the form to open in Maximized State. any help? Regards Mandar Attachments userformdata.xlsb 19 KB · Views: 6
Hi All I have a Excel file with open event which hides the application and show only user form but the user form is small in size. I want the form to open in Maximized State. any help? Regards Mandar
N NARAYANK991 Excel Ninja Oct 29, 2017 #2 Hi , See if this helps : https://www.mrexcel.com/forum/excel-questions/86034-set-userform-full-screen.html Narayan
Hi , See if this helps : https://www.mrexcel.com/forum/excel-questions/86034-set-userform-full-screen.html Narayan
shrivallabha Excel Ninja Oct 29, 2017 #3 Try putting in Userform's initialize event like below: Code: Private Sub UserForm_Initialize() Me.Height = Application.UsableHeight Me.Width = Application.UsableWidth End Sub
Try putting in Userform's initialize event like below: Code: Private Sub UserForm_Initialize() Me.Height = Application.UsableHeight Me.Width = Application.UsableWidth End Sub
Belleke Well-Known Member Oct 29, 2017 #4 Something like this?? Attachments userformdata.xlsb 24.4 KB · Views: 12