Dear Sir/Madam,
I have two form in my application form1 and form2. Here, i want to show the form2 from form1 by using a button. And i want to reverse back to my form1 from form2 using same technique. But i want to close form1 (Not visible=false or hide) after loading form2 and same thing in reverse back also.
I have tried like this....
'for from1
form2.show()
'form1.close ' not accepted
me.close
In my above code whole application is closing.
'for form2
form1.show()
me.close()
Here it is working in form2
I want to know that can we close our current form after showing another form? Please guide me.