Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've implemented one of the progress bars suggested in the threads here. I
am looping through a named range and as the process is running, the rows are changing as expected. What I need is a way to minimize the current sheet or workbook (setting Visible=false breaks my code). I searched the VBA help for a way to minimize the sheet but cant find it. How can minimize the sheet or workbook? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Amil,
Try this activewindow.WindowState = xlMinimized -- HTH Bob Phillips "Amil" wrote in message ... I've implemented one of the progress bars suggested in the threads here. I am looping through a named range and as the process is running, the rows are changing as expected. What I need is a way to minimize the current sheet or workbook (setting Visible=false breaks my code). I searched the VBA help for a way to minimize the sheet but cant find it. How can minimize the sheet or workbook? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
With ActiveWindow
.WindowState = xlMinimized End with or for the application application.WindowState = xlMinimized to restore xlNormal -- Regards, Tom Ogilvy "Amil" wrote in message ... I've implemented one of the progress bars suggested in the threads here. I am looping through a named range and as the process is running, the rows are changing as expected. What I need is a way to minimize the current sheet or workbook (setting Visible=false breaks my code). I searched the VBA help for a way to minimize the sheet but cant find it. How can minimize the sheet or workbook? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Worked very well. Thank you.
"Bob Phillips" wrote: Amil, Try this activewindow.WindowState = xlMinimized -- HTH Bob Phillips "Amil" wrote in message ... I've implemented one of the progress bars suggested in the threads here. I am looping through a named range and as the process is running, the rows are changing as expected. What I need is a way to minimize the current sheet or workbook (setting Visible=false breaks my code). I searched the VBA help for a way to minimize the sheet but cant find it. How can minimize the sheet or workbook? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
minimizing problem | Excel Discussion (Misc queries) | |||
Minimizing Excel from a Macro | Excel Programming | |||
Minimizing application from VBA | Excel Programming | |||
Minimizing a user form | Excel Programming | |||
Minimizing a Form | Excel Programming |