Thread: halting macro
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Leyton Leyton is offline
external usenet poster
 
Posts: 3
Default halting macro

Jonas

If you use the built in msgBox dialog:

Sub test()
Dim iResult As Integer

iResult = MsgBox("Do You want to continue?",
vbYesNo, "Test")
If iResult = vbNo Then
Exit Sub
End If
' Do the rest
End Sub

Note that vbYes, vbNo (and the others) all return an
integer value which you can test for or use the constants
as above

HTH

Leyton


-----Original Message-----
Hi again,
lots of questions from here and thanks for all the good

answers! Really
helped.

Another question is how to make a dialogbox where you

answer a question
(yes or no answer) were a positive answer would continue

to run the
reminding macro while a negative answer would halt the

macro right
there.

Is there such an code to resolve this as well?

Kind regards

Jonas

*** Sent via Developersdex http://www.developersdex.com

***
Don't just participate in USENET...get rewarded for it!
.