Is it possible to maximize a UserForm in Excel or to display in full screen?
Printable View
Is it possible to maximize a UserForm in Excel or to display in full screen?
A cheat's way off the top of my head:
VB Code:
Application.DisplayFullScreen = True UserForm1.Width = Application.ActiveWindow.Width UserForm1.Height = Application.ActiveWindow.Height UserForm1.Move 0, 0 Application.DisplayFullScreen = False
zaza
Great!
Thanks a lot