Hi there,
I am trying to dock a form onto a MDI, but when I use the following code, it just flashes itself and the form disappeared.
using (frmDock formDock = new frmDock())
{
formDock.MdiParent = this;
formDock.Dock = DockStyle.Left;
formDock.Show();
}