I have a Module, which starts when clicking button 1, within this depending on the select option will open up a userform, with 3 separate buttons, the ok button, posts the data from the userform, and then I want to be able to give the option to call Module 1 again (to enter a 2nd lot of data).
The code in question I am using (from the userform Ok button is:
The code in question I am using (from the userform Ok button is:
Code:
MsgBox "Do you want to Enter another Order?", vbYesNo, "Another Order"
Select Case Response
Case vbYes
Unload Me
Call Module1.Button1_Click
Case vbNo
End Select
Unload Me
Finish:
End Sub [\code]
Module1 is a Public Sub, but if I hit select yes, unload me happens only.
I guess I am missing something, please can someone help me.
Hope this makes sense.