// get the name of the chosen form
string myMenu = Convert.ToString(treeView1.SelectedNode.Tag);
Form frm = new Form();
frm.Name = myMenu;
frm.MdiParent = this;
frm.Show();
frm.BringToFront();
// opens a blank form and not the one in the solution.