hi
i use vb.net to make a simple data showing application
i have make 3 forms
1 mdi parent n 2 child
it is simple for a parent form to call a child form
but how to code a child to call another child form to show up at the parent form
if parent form call child would be like this
here is to make things more understanding
form1(parent) calls form2(child)
form2(child) calls form3(child)
note....form2 and form3 must be in form1(parent)
all this happen on button clicking
how to do this?
thank you in advance
i use vb.net to make a simple data showing application
i have make 3 forms
1 mdi parent n 2 child
it is simple for a parent form to call a child form
but how to code a child to call another child form to show up at the parent form
if parent form call child would be like this
Code:
frm.MDIParent= ME
frm.show
here is to make things more understanding
form1(parent) calls form2(child)
form2(child) calls form3(child)
note....form2 and form3 must be in form1(parent)
all this happen on button clicking
how to do this?
thank you in advance