Is it possible to maximize a UserForm in Excel or to display in full screen?
Last edited by Fonty; Jul 3rd, 2007 at 04:46 PM.
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
Application.DisplayFullScreen = True UserForm1.Width = Application.ActiveWindow.Width UserForm1.Height = Application.ActiveWindow.Height UserForm1.Move 0, 0 Application.DisplayFullScreen = False
I use VB 6, VB.Net 2003 and Office 2010 Code: Excel Graphing | Excel Timer | Excel Tips and Tricks | Add controls in Office | Data tables in Excel | Gaussian random number distribution (VB6/VBA,VB.Net) | Coordinates, Vectors and 3D volumes
Great! Thanks a lot
Forum Rules