R
Rat
Hi,
For example in my vb.net application i am having
MdiMain Form -- 1 (Parent mdiform)
FrmOne Form -- 2 (Child Form to MdiMain)
FrmTwo Form -- 3 (normal form to be converted to child
Form)
Here from MdiMain Form if i access FrmOne using the
following code. (For converting as a child Form)
Dim form1 As New FrmOne()
form1.MdiParent = Me
form1.Show()
The above code is working fine.
But the problem starts here,,,
i am accessing a file from a menu i.e FrmOne(Child form).
From FrmOne i am access FrmTwo. How will i create FrmTwo
as a Child Form to MdiMain Form.
Regards and Thanks in advance,
Rat
For example in my vb.net application i am having
MdiMain Form -- 1 (Parent mdiform)
FrmOne Form -- 2 (Child Form to MdiMain)
FrmTwo Form -- 3 (normal form to be converted to child
Form)
Here from MdiMain Form if i access FrmOne using the
following code. (For converting as a child Form)
Dim form1 As New FrmOne()
form1.MdiParent = Me
form1.Show()
The above code is working fine.
But the problem starts here,,,
i am accessing a file from a menu i.e FrmOne(Child form).
From FrmOne i am access FrmTwo. How will i create FrmTwo
as a Child Form to MdiMain Form.
Regards and Thanks in advance,
Rat