PDA

Click to See Complete Forum and Search --> : MDI form events


Dayo312
Jan 1st, 2000, 09:35 PM
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

Forest Dragon
Jan 2nd, 2000, 03:33 AM
You can use the Resize event to determine the MDI Form's status:

If MDI1.WindowState=vbMinimized Then
Child1.Visible=False
End If