home *** CD-ROM | disk | FTP | other *** search
- unit Config;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ExtCtrls, StdCtrls, Buttons;
-
- type
- TFrmConfiguration = class(TForm)
- Panel1: TPanel;
- Panel2: TPanel;
- BtnOk: TButton;
- BtnClose: TButton;
- Label1: TLabel;
- Edit1: TEdit;
- SpeedButton1: TSpeedButton;
- procedure BtnCloseClick(Sender: TObject);
- procedure BtnOkClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FrmConfiguration: TFrmConfiguration;
-
- implementation
-
- {$R *.DFM}
-
- procedure TFrmConfiguration.BtnCloseClick(Sender: TObject);
- begin
- Close;
- end;
-
- procedure TFrmConfiguration.BtnOkClick(Sender: TObject);
- begin
- {Save INI}
-
- end;
-
- end.
-