Multiple message boxes, one after the other in AutoOpen or other?
I can't find the answer to this one; perhaps I'm googling/searching
for the wrong search terms.
I have an AutoOpen script that works just great, but I need to string
at least one other message to it after pressing OK. (And cancel would
stop the boxes, naturally.)
Sub Auto_Open()
MyMsgBox = MsgBox("Script line 1." & vbCrLf & _
"Script line 2", _
vbOKOnly + vbExclamation, "REMEMBER ...")
End Sub
How could I tack on another message box, or perhaps 2, to the above?
Thank you! :oD
|