Hi Hareth,
You need public instance of Form2, so that you can hide and show from
different form classes.
First Declare the variable as global in module.
Public objFrm2 as new Form2
Then show the form in any class by,
objFrm2.Show()
Then you can hide it from any class by,
objFrm2.Hide()
Then you can show it by,
objFrm2.Show()
Hopes this will help.
Sakharam Phapale
> --------------------------------------------------------
>
[quoted text clipped - 13 lines]
>
> how do i get it to show form2 thats hidden?