Opening child form is causing mdiform to change size and shrink
问题 I am having a basic problem opening a child form in an mdiForm. Dim frm As New Form1 frm.MdiParent = Me frm.Show() I have some code in the Form-Load event of the child form to open up connection to access db (connection opens fine). Try conn.Open() catch ex As Exception Msgbox("connection error") End Try MdiForm is set to open up in a Maximized state. When the app runs, mdiForm opens up normal and the Menustrip looks normal size as well. However, when I try to open up a child form (Form1 in