hello...

i have a problem dealing with the called form to be a child of the base... i don't know if i explained it correctly but this is what i want to happen...

there are three forms... frmmain, frmitem, frmitemquery...
frmmain is the parent and let's say it calls frmitem, making that a child. what i don't know is that, frmitem calls frmitemquery and making it a child of frmmain...

something like this...

on frmmain:
Code:
Form f=new frmitem();
f.Show();
f.MdiParent=this;
on frmitem:
Code:
Form f=new frmitemquery();
f.Show();
// there should be something here to make 
//the frmitemquery a child of frmmain
thanx very much...