View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Canceling the rest of a Sub

Almost the

If DocInfo.CancelInfo = True Then
Exit Sub
End If

--
Gary's Student


"Rob" wrote:

In the middle of a Sub the user is asked a question, if the user selects
Cancel I want the sub to stop. I was thinking something like this...

If DocInfo.CancelInfo = True Then
End Sub
End If

but I get an error from the above code.

Any Ideas?

Thanks in Advance.
Rob