G glgraphics Guest Mar 7, 2005 #1 Is there a way to have a different message box pop up depending on a "Yes" or "No" response? I have a message response that pops up now, but does so no matter what the response is.
Is there a way to have a different message box pop up depending on a "Yes" or "No" response? I have a message response that pops up now, but does so no matter what the response is.
Q qwertybob New member Local time Today, 12:38 Joined Mar 1, 2005 Messages 8 Mar 7, 2005 #2 is this the kind of thing you mean ? Dim answer answer = MsgBox("?", vbYesNo) If answer = vbYes Then MsgBox "a" else msgbox "b" end if
is this the kind of thing you mean ? Dim answer answer = MsgBox("?", vbYesNo) If answer = vbYes Then MsgBox "a" else msgbox "b" end if