Quantcast
Channel: Scrolling while message box is running - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by CommonSense for Scrolling while message box is running

There's API alternative! Declare in a top of module this function:#If VBA7 Then Public Declare PtrSafe Function ModelessMsgBox Lib "User32" Alias "MessageBoxA" (Optional ByVal hWnd As Long, _ Optional...

View Article



Answer by Vinicius B for Scrolling while message box is running

There is not a application.MessageBox function just the MsgBox, but you can create a form that looks like a MsgBox and set the ShowModal property to False

View Article

Scrolling while message box is running

I have the following macro to show a message box to the user:Sub Messageboxtest()Test = MsgBox("Do you want to continue", vbYesNo)If Answer = vbYes ThenSheets(1).Range("A2").Value = 1ElseEnd IfEnd...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images