From my main form, in a combo box, I call a second form like this:
dim NewForm as form2
NewForm = new form2
NewForm.show
After the user completes their work in form2, I need to get back to form1. How can I do this? If I do this from form2...
dim OrigForm as form1
OrigForm = form1
form1.show
...it creates another instance of form1. I need to get back to my original form1. How can I go back and forth from one form to another without re-creating them each time?
Thanks in advance
Ben
dim NewForm as form2
NewForm = new form2
NewForm.show
After the user completes their work in form2, I need to get back to form1. How can I do this? If I do this from form2...
dim OrigForm as form1
OrigForm = form1
form1.show
...it creates another instance of form1. I need to get back to my original form1. How can I go back and forth from one form to another without re-creating them each time?
Thanks in advance
Ben