CompuServe Thread

Child Windows

1 messages in this thread
#1120From: Mark Novisoff/MicroHelpOct 3, 1991 7:25 AM
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