home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Objrepos / Mdiapp / childwin.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  455b  |  27 lines

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