home *** CD-ROM | disk | FTP | other *** search
- unit Childwin;
-
- interface
-
- uses Windows, Classes, Graphics, Forms, Controls, StdCtrls;
-
- type
- TMDIChild = class(TForm)
- Memo1: TMemo;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- implementation
-
- {$R *.DFM}
-
- procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action := caFree;
- end;
-
- end.
-