Child Windows
03-Oct-91 07:25:25
Sb: #1090-Child Windows
Fm: Mark Novisoff/MicroHelp 73047,3706
To: Paul Johnson 75470,1721
Paul,
The easiest way to handle that is to do it with code in the parent's
Form_Resize event:
Sub Form_Resize()
If WindowState = 1 Then ' If minimized
Form2.WindowState = 1
Else
Form2.WindowState = 0
End If
End Sub
Mark