how to set parent of a form

bonybaba

New member
Joined
Apr 10, 2006
Messages
2
Programming Experience
1-3
hi everybody
i am working on window application in vb.net,and i want myb form as a child of another application such as microsodt visio, Microsoft visio is alrady open

is there is anyway to do this in vb.net
if any body know Please help me.
Thsnks
 
ManicCW said:
to set a parent form just do this:
VB.NET:
Expand Collapse Copy
Dim MyChildForm as new YourFormClass
MyChildForm.ShowDialog(Me)
'where Me is the active form
no i dont want my form as a child of another form.
actually i want when i open my form it open as a chilld of another application e.g. Microsoft visio application, This Application is already running.
If you have any idea about that so Please help me.
 
Back
Top