View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
N10 N10 is offline
external usenet poster
 
Posts: 141
Default Quit UserForm and Procedure

Thanks for the calrification Bob

Best N10

"Bob Phillips" wrote in message
...
NO, the code in the calling procedure still continues after this executed.

--

HTH

RP

"N10" wrote in message
...
IS this also appropriate and is it equivalent


Me.HIDE
Set Userform1 = Nothing

Best N10


"Bob Phillips" wrote in message
...
Maria,

Try this

Private Sub cmdCancel_Click()
Unload Me
End
End Sub

--

HTH

RP

"Maria" wrote in message
...
Hi,

I have a Procedure and a UserForm.
On the UserForm is the Button "Cancel".
When I click this button I would like to quit
the UserForm AND stop running the other procedure.

Sub test()
' Some Code
Call UserForm1
' Some more Code <-- Do not run when quit UserForm
End Sub

Unfortunately this doesn't work:

Private Sub cmbCancel_Click()
Unload Me
Exit Sub
End Sub

What can I do to really leave both?

Thank you for helping me.
Maria