BUG: Line Displays in Title Bar of MDI Child Form
ID: Q189992
|
The information in this article applies to:
-
Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 6.0
SYMPTOMS
An MDI Child form with a border style set to 5-Sizable ToolWindow appears
with a thin line below the Toolbar. The line does not repaint when another
window is moved over the MDI Child form.
RESOLUTION
Toggle the form height by adding the following code to the Form_Load event
of the MDI Child form:
Me.Height = Me.Height - 15
Me.Height = Me.Height + 15
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. We are researching this bug and will post
new information here in the Microsoft Knowledge Base as it becomes
available.
MORE INFORMATION
Steps to Reproduce Behavior
- Start a new Standard EXE project in Visual Basic. Form1 is created by
default.
- Add an MDI Child Form to the project by completing the following steps:
- From the Project menu, select Add MDI Form. The Add MDI Form dialog
box appears with MDI Form highlighted in the New tab.
- Click the Open button to add an MDI Form, MDIForm1, to the project.
- Set the following properties for Form1:
Property Setting
----------------------------------------
MDIChild True
BorderStyle 5-Sizable ToolWindow
- On the Run menu, select Start, or press the F5 key to start the program.
NOTE: A gray line appears below the title bar of the MDI Child
window. If you move another window on top of this MDI Child window, the
gray line does not repaint.
- Stop the project and add the following code to the code window of Form1:
Private Sub Form_Load()
Me.Height = Me.Height - 15
Me.Height = Me.Height + 15
End Sub
- Run the project again and note that the gray line has disappeared.
Additional query words:
kbDSupport kbDSD kbVBp kbVBp600bug kbMDI
Keywords : kbGrpVB
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbbug