Hi,
I need to make another form move when my MDI form does. And I need to make another form not visiable when My mdi form minimises. How could I do that?
Thanks.
Evan
Printable View
Hi,
I need to make another form move when my MDI form does. And I need to make another form not visiable when My mdi form minimises. How could I do that?
Thanks.
Evan
You can use the Resize event to determine the MDI Form's status:
If MDI1.WindowState=vbMinimized Then
Child1.Visible=False
End If