I posted a sample to your email address but I'm not sure
if you got it.
I'll describe what to do to create the problem.
1. Create a new VB.Net Windows Form project.
2. Set the initial form (Form1) to be a MDI container
(IsMDIContainer = true)
3. Add a statusbar to Form1 (leave all default settings)
4. Add a second form Form2
5. Add a statusbar to Form2
6. Add some menu or button to item to open Form2 from
Form1 e.g.
Private Sub MenuItem1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MenuItem1.Click
Dim myForm2 As New Form2()
Form2.MdiParent = Me
Form2.Show()
End Sub
7. Run the application and open form2.
You'll notice that you can click and drag Form1's
statusbar to resize Form1. However, if you try to click
and drag Form2's statusbar (the bottom right gripping
area) it won't work. The only way to resize Form2 is to
select the border.
This is not the correct behaviour. In VB 6 it worked
properly so you could also resize the MDI child form with
its statusbar.
Rudolf
-----Original Message-----
Hi Rudolf, Not sure what you are refering to. Do you have
a small sample that I can look at that will allow me to
see teh behavior you are refereing to?
Want to know more? Check out the MSDN Library at
http://msdn.microsoft.com or the Microsoft Knowledge Base
at
http://support.microsoft.com
Scot Rose, MCSD
Microsoft Visual Basic Developer Support
Email : (e-mail address removed) <Remove word online. from address>
This posting is provided "AS IS", with no warranties, and
confers no rights.