Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello again
I have a spreadsheet that runs automatically using Windows scheduler. How can I make sure that it runs "minimized" or "quiet" so that it does not disturb me when I happen to be working (on the same machine)? Thank you. W |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Put the following code in the ThisWorkbook module of the workbook:
Private Sub Workbook_Open() Application.WindowState = xlMinimized End Sub -- Vasant "cogent" wrote in message ... Hello again I have a spreadsheet that runs automatically using Windows scheduler. How can I make sure that it runs "minimized" or "quiet" so that it does not disturb me when I happen to be working (on the same machine)? Thank you. W |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you very much. out of curiosity is there any way to accomplish the
same objective with the Shell window (ie DOS?). W "Vasant Nanavati" <vasantn *AT* aol *DOT* com wrote in message ... Put the following code in the ThisWorkbook module of the workbook: Private Sub Workbook_Open() Application.WindowState = xlMinimized End Sub -- Vasant "cogent" wrote in message ... Hello again I have a spreadsheet that runs automatically using Windows scheduler. How can I make sure that it runs "minimized" or "quiet" so that it does not disturb me when I happen to be working (on the same machine)? Thank you. W |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Shell "cmd.exe", vbMinimizedNoFocus
-- Vasant "cogent" wrote in message ... Thank you very much. out of curiosity is there any way to accomplish the same objective with the Shell window (ie DOS?). W "Vasant Nanavati" <vasantn *AT* aol *DOT* com wrote in message ... Put the following code in the ThisWorkbook module of the workbook: Private Sub Workbook_Open() Application.WindowState = xlMinimized End Sub -- Vasant "cogent" wrote in message ... Hello again I have a spreadsheet that runs automatically using Windows scheduler. How can I make sure that it runs "minimized" or "quiet" so that it does not disturb me when I happen to be working (on the same machine)? Thank you. W |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Alright!
"Vasant Nanavati" <vasantn *AT* aol *DOT* com wrote in message ... Shell "cmd.exe", vbMinimizedNoFocus -- Vasant "cogent" wrote in message ... Thank you very much. out of curiosity is there any way to accomplish the same objective with the Shell window (ie DOS?). W "Vasant Nanavati" <vasantn *AT* aol *DOT* com wrote in message ... Put the following code in the ThisWorkbook module of the workbook: Private Sub Workbook_Open() Application.WindowState = xlMinimized End Sub -- Vasant "cogent" wrote in message ... Hello again I have a spreadsheet that runs automatically using Windows scheduler. How can I make sure that it runs "minimized" or "quiet" so that it does not disturb me when I happen to be working (on the same machine)? Thank you. W |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open a File "Quietly" | Excel Programming |