Skip to content
CompuServe test bed
CompuServe Archive
CompuServe Forums
CompuServe Messages
CompuServe Thread
CompuServe User
CompuServe Thread
Search
Browse Forums
Thread
MS BASIC Forum
·
Visual Basic
Child Windows
1
messages in this thread
#
1120
From:
Mark Novisoff/MicroHelp
Oct 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