home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9ZIP / TSUZDLL.ZIP / EXAM3 / EXTROPT.PAS < prev    next >
Pascal/Delphi Source File  |  1998-03-22  |  643b  |  37 lines

  1. unit ExtrOpt;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, Grids, Outline, DirOutln, Buttons, FileCtrl, ComCtrls, ExtCtrls;
  8.  
  9.  
  10. type
  11.   TFExtrOpt = class(TForm)
  12.     Label1: TLabel;
  13.     ddDir: TComboBox;
  14.     rgFiles: TRadioGroup;
  15.     GroupBox1: TGroupBox;
  16.     cbOver: TCheckBox;
  17.     cbUse: TCheckBox;
  18.     BitBtn1: TBitBtn;
  19.     BitBtn2: TBitBtn;
  20.     edPswd: TEdit;
  21.     Label2: TLabel;
  22.     BitBtn3: TBitBtn;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   FExtrOpt: TFExtrOpt;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.