
04-09-2003, 06:14 AM
|
 |
Jedi Coder
* Expert *
|
|
Join Date: Aug 2002
Location: Abingdon, MD
Posts: 3,438
|
|
Any MDI child will of course be minimized if the parent is minimized. As for the resizing, put code in the parent's Resize event to resize the child:
Code:
Private Sub MDIForm_Resize()
Form1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
|
|