home *** CD-ROM | disk | FTP | other *** search
- unit Player;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ComCtrls, ToolWin, Buttons;
-
- type
- TFrmPlayer = class(TForm)
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FrmPlayer: TFrmPlayer;
-
- implementation
-
- {$R *.DFM}
-
- procedure TFrmPlayer.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action := caFree;
- end;
-
- end.
-