Hi All,
I am creating one application with 2 forms. Step1 is the first form and Step2 is the second one. I can load the second form from the first one. How do I create an instance of the first form and call it from the second form? I dont want to load the first form afresh, instead, I want to load the last instance of the first form (from the second form, may be using a Back button) where user would already have filled in some data and navigated to the second form.
I can create an instance of the first form as
But I dont seem to have been able to use
from the second form.
Hope my requirement is clear to you.
I am sorry, I am quite new to VB.NET. Please help.
I am creating one application with 2 forms. Step1 is the first form and Step2 is the second one. I can load the second form from the first one. How do I create an instance of the first form and call it from the second form? I dont want to load the first form afresh, instead, I want to load the last instance of the first form (from the second form, may be using a Back button) where user would already have filled in some data and navigated to the second form.
I can create an instance of the first form as
Code:
DIM F1 As Step1
Code:
F1.show()
Hope my requirement is clear to you.
I am sorry, I am quite new to VB.NET. Please help.
Comment