home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / CHILDWIN.CPP < prev    next >
C/C++ Source or Header  |  1997-02-14  |  632b  |  19 lines

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "ChildWin.h"
  6. //--------------------------------------------------------------------- 
  7. #pragma resource "*.dfm"
  8. //--------------------------------------------------------------------- 
  9. __fastcall TMDIChild::TMDIChild(TComponent *Owner)
  10.     : TForm(Owner)
  11. {
  12. }
  13. //--------------------------------------------------------------------- 
  14. void __fastcall TMDIChild::FormClose(TObject *Sender, TCloseAction &Action)
  15. {
  16.     Action = caFree;
  17. }
  18. //--------------------------------------------------------------------- 
  19.