I am developing windows application in VS 2005 and I have following issues with MDI form,1) I have following code for opening child form inside MDI form. Dim frmEmployee As New frmEmployeeSearch frmEmployee.MdiParent = Me frmEmployee.WindowState = FormWindowState.Maximized frmEmployee.Show() The issue is, when form gets maximized in MDI form, the child form icon doesn't show up. The basic form icon shows up at the left hand side in MDI form, instead of my assigned icon. If I minimize and then maximize then it shows the correct icon. Why?2) When I open a child form inside MDI form, some forms needs to be maximized and some should be shown as small forms inside the MDI form. Now If I open first form as maximized form, all forms opened after it becomes maximized. Can I have some forms maximized and some shown as smll forms (without maximizing it)?3) I have a list in child form (at the bottom) for employees. User can select employee in the list and he can view details of that employee above the list in the child form. So when user selects employee its employee number is shown in forms text, I mean title bar of form (frmEmployee.text) like "Employee: John Smith (0001234)". By default it selects first employee in the list and its name is shown in the title bar of form. You also know that when child form gets opened in MDI form, its name is shown in the MDI forms "Windows" Menu at the bottom. I want to update the forms name every time I
View Complete Post