Hello all,
i"ve written an application in visual Studio .Net (visual basic) but encounterd some sort of bug...
Please look into the following:
Situation
------------------------------------------------
.net framework 1.1
studio.net -> visualbasic
Main-form contains:
Mdi-container property = true
menu-items
one menu-item contains this code under the click event and launches a mdi-child named Offerte_form:
Offerte_form contains:
menu-items
textbox (just as reference)
one menu item contains:
name: &Windows
MDI-list property = true
Problem
----------------------------------------------
Now the following problem arises:
when clicking the &windows when the MDI-Childform is in normal mode (e.g. not fully maximized) the MDI-list is generated properly.
But when i maximize the MDI-Childform and click on &windows agian the fist time it will not show the list. Clicking the second time on the &window will result in the list.
Did i forget something to set or is this a bug in studio.net?
regards hilmar
i"ve written an application in visual Studio .Net (visual basic) but encounterd some sort of bug...
Please look into the following:
Situation
------------------------------------------------
.net framework 1.1
studio.net -> visualbasic
Main-form contains:
Mdi-container property = true
menu-items
one menu-item contains this code under the click event and launches a mdi-child named Offerte_form:
Code:
Dim NewMDIChild As New Offerte_form()
Set the Parent Form of the Child window.
NewMDIChild.MdiParent = Me
Display the new form.
NewMDIChild.Show()
Offerte_form contains:
menu-items
textbox (just as reference)
one menu item contains:
name: &Windows
MDI-list property = true
Problem
----------------------------------------------
Now the following problem arises:
when clicking the &windows when the MDI-Childform is in normal mode (e.g. not fully maximized) the MDI-list is generated properly.
But when i maximize the MDI-Childform and click on &windows agian the fist time it will not show the list. Clicking the second time on the &window will result in the list.
Did i forget something to set or is this a bug in studio.net?
regards hilmar