home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / CHILDWIN.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  428b  |  27 lines

  1. unit Childwin;
  2.  
  3. interface
  4.  
  5. uses Windows, Classes, Graphics, Forms, Controls;
  6.  
  7. type
  8.   TMDIChild = class(TForm)
  9.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15.  
  16. implementation
  17.  
  18. {$R *.DFM}
  19.  
  20.  
  21. procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
  22. begin
  23.   Action := caFree;
  24. end;
  25.  
  26. end.
  27.