hi
i have two forms
in the first form i used form2.show
and in the second form from1.show
but i want to reload form1 again on button click event in form2
is it possible to reload the form as it was first appeared

thank u very much

Recommended Answers

All 4 Replies

Hi,

When you are showing Form2 in Form1, dont unload it, Just Hide it.. and in form2, show form1

Code in Form1:
Me.Hide
Form2.Show

Code in Form2:
Form1.Show


Regards
Veena

hi
i have a button in form2 and when i click it i want the whole thing restart from the first form

Hi,

Then Unload Form1 after showing form2..

Code in Form1:
Form2.Show
Unload Me

Code in Form2:
Form1.Show


REgards
Veena

thank u

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.