up vote 1 down vote favorite
share [g+] share [fb]

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();

        }
link|improve this question

28% accept rate
feedback

1 Answer

up vote 3 down vote accepted

That's because as soon as that using block ends it disposes the new form you just created. If you did it without the using, the form would stay there. You don't need a using statement as long as you just close it with formDock.Close(). Using statements normally accompany connections to databases or streams to ensure that they get closed/disposed properly and don't cause problems later in your program.

Here's one of I'm sure many articles about the using statement out there on the web.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.