Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Does anyone know if I can load a user form, and either ;
1) code it to be fullscreen or maximized 2) or, make the Excel window where it is NOT visible behind the userform? D.S. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
DS,
Try something like the following to resize the form to fill the entire Excel window. With Application UserForm1.Move .Left, .Top, .Width, .Height End With UserForm1.Show -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "D.S." wrote in message ... Does anyone know if I can load a user form, and either ; 1) code it to be fullscreen or maximized 2) or, make the Excel window where it is NOT visible behind the userform? D.S. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can also try something like:
application.Visible = False Userform1.show Application.visible = True -- Regards, Tom Ogilvy "D.S." wrote in message ... Does anyone know if I can load a user form, and either ; 1) code it to be fullscreen or maximized 2) or, make the Excel window where it is NOT visible behind the userform? D.S. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Chip & Tom. That will work nicely.
D.S. "Tom Ogilvy" wrote in message ... You can also try something like: application.Visible = False Userform1.show Application.visible = True -- Regards, Tom Ogilvy "D.S." wrote in message ... Does anyone know if I can load a user form, and either ; 1) code it to be fullscreen or maximized 2) or, make the Excel window where it is NOT visible behind the userform? D.S. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
The window opens in a smaller window not full sized window. | Excel Discussion (Misc queries) | |||
Properties window show nothing for a userform | Excel Discussion (Misc queries) | |||
In Excel - how to delete new window created from window on tool ba | Excel Worksheet Functions | |||
How do I undo the Excel, Window Menu, New Window command | Excel Discussion (Misc queries) | |||
Taking Data of cell from worksheet to a userform window | Excel Programming |