home *** CD-ROM | disk | FTP | other *** search
- unit fOptions;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- Tf_options = class(TForm)
- Panel1: TPanel;
- cb_autoIncrement: TCheckBox;
- cb_AutoComment: TCheckBox;
- cb_minimize: TCheckBox;
- b_OK: TBitBtn;
- b_cancel: TBitBtn;
- cb_CheckVersion: TCheckBox;
- cb_VerInfoInVerFile: TCheckBox;
- cb_HaltOnError: TCheckBox;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- f_options: Tf_options;
-
- implementation
-
- {$R *.DFM}
-
- procedure Tf_options.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- action := caFree;
- end;
-
- end.
-