Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to display a message box that says "Processing...Please
Wait" while the spreadsheet is running code? I can't figure out how to display a message box that does not require the user to select OK and that will remain displayed while the code is running. Any help would be appreciated. Thanks. Connie |
#2
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
Connie, I typically use the StatusBar for such messages
Application.StatusBar = "Runing macro please wait" 'Code Application.StatusBar = False -- Charles Chickering "A good example is twice the value of good advice." "Connie" wrote: Is there a way to display a message box that says "Processing...Please Wait" while the spreadsheet is running code? I can't figure out how to display a message box that does not require the user to select OK and that will remain displayed while the code is running. Any help would be appreciated. Thanks. Connie |
#3
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
You have to create a user form and show it modelessly. E.g.,
Userform1.Show vbModeless When your procedure ends, unload the form: Unload Userform1 -- Cordially, Chip Pearson Microsoft MVP - Excel www.cpearson.com (email address is on the web site) "Connie" wrote in message s.com... Is there a way to display a message box that says "Processing...Please Wait" while the spreadsheet is running code? I can't figure out how to display a message box that does not require the user to select OK and that will remain displayed while the code is running. Any help would be appreciated. Thanks. Connie |
#4
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]() Connie wrote: Is there a way to display a message box that says "Processing...Please Wait" while the spreadsheet is running code? I can't figure out how to display a message box that does not require the user to select OK and that will remain displayed while the code is running. Any help would be appreciated. Thanks. Connie In the VBA of the workbook (Alt + F11) you could right click on the Microsoft Excel Objects Folder and choose to insert-UserForm. This will display a blank form and toolbox window that will allow you to creat the desired form. Then just call userform.show and userform.hide in the appropriate areas. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
error message when opening excel 2000 | Excel Discussion (Misc queries) | |||
Simple message box question | Excel Discussion (Misc queries) | |||
Simple message box question | Excel Discussion (Misc queries) | |||
When Excel wait for OLE action allow cancel so not have to end pr | Excel Discussion (Misc queries) | |||
Calculations And Order In Macros | Excel Discussion (Misc queries) |