InterviewSolution
| 1. |
What Is The Diff Between Vb Mdi Form And .net Mdi Form? |
|
Answer» In VB MDI form is created by adding MDI Form to the project and adding CHILD forms by setting MDICHILD property of the child form. In .NET there is no MDI form, any form can be made a MDI parent by setting IsMdiContainer property to TRUE. In VB MDI form is created by adding MDI Form to the project and adding child forms by setting MDICHILD property of the child form. In .NET there is no MDI form, any form can be made a MDI parent by setting IsMdiContainer property to TRUE. |
|