Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to allow a user to navigate around a worksheet while
waiting for a user input to a msgbox? For instance, while waiting for a response to the following line of code is there a way to allow the user to peruse the worksheet (mostly scroll left and right to view the line): answer = MsgBox("Do you want to delete this row?", vbYesNo) John Keith |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
John,
The Excel message dialog boxes are modal and will not allow you to navigate or do anything else until a response is processed. You could create a userform that mimics an Excel dialog box but is not set to modal to get around the limitation. Ken "John Keith" wrote: Is it possible to allow a user to navigate around a worksheet while waiting for a user input to a msgbox? For instance, while waiting for a response to the following line of code is there a way to allow the user to peruse the worksheet (mostly scroll left and right to view the line): answer = MsgBox("Do you want to delete this row?", vbYesNo) John Keith |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Fri, 11 Sep 2009 10:19:01 -0700, Ken Warthen
wrote: John, The Excel message dialog boxes are modal and will not allow you to navigate or do anything else until a response is processed. You could create a userform that mimics an Excel dialog box but is not set to modal to get around the limitation. Ken, Thanks, I guess it's time to learn a new trick. John Keith |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
waiting for user response | Excel Programming | |||
Pausing a macro while waiting for an input into a cell | Excel Programming | |||
How to hide #DIV/0! in cells waiting for input? | Excel Discussion (Misc queries) | |||
Waiting for Input in a macro | Excel Discussion (Misc queries) | |||
Waiting for a valid input | Excel Programming |