home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Delphi.5 / Samples / sourceD5 / browutil.exe / BROWSER / CONFIG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-06-30  |  791 b   |  45 lines

  1. unit Config;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TFrmConfiguration = class(TForm)
  11.     Panel1: TPanel;
  12.     Panel2: TPanel;
  13.     BtnOk: TButton;
  14.     BtnClose: TButton;
  15.     Label1: TLabel;
  16.     Edit1: TEdit;
  17.     SpeedButton1: TSpeedButton;
  18.     procedure BtnCloseClick(Sender: TObject);
  19.     procedure BtnOkClick(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   FrmConfiguration: TFrmConfiguration;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TFrmConfiguration.BtnCloseClick(Sender: TObject);
  34. begin
  35.   Close;
  36. end;
  37.  
  38. procedure TFrmConfiguration.BtnOkClick(Sender: TObject);
  39. begin
  40.   {Save INI}
  41.   
  42. end;
  43.  
  44. end.
  45.