Here is my problem.
I have a MainForm which is the parent.
I have a toolbar form which is the child.
ToolBarForm mytoolbarform = new ToolBarForm();
mytoolbarform.M diParent = this;
mytoolbarform.S how();
I now want to call a third form from the Toolbar form which is a child of the MainForm.
How do I do that?
Thanks
I have a MainForm which is the parent.
I have a toolbar form which is the child.
ToolBarForm mytoolbarform = new ToolBarForm();
mytoolbarform.M diParent = this;
mytoolbarform.S how();
I now want to call a third form from the Toolbar form which is a child of the MainForm.
How do I do that?
Thanks
Comment