UNIT9.PAS
上传用户:jzxjwgb
上传日期:2007-01-06
资源大小:64k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Delphi

  1. unit Unit9;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  4.   Buttons, ExtCtrls, ComCtrls, Mask, Spin;
  5. type
  6.   TRead10Dlg = class(TForm)
  7.     OKBtn: TButton;
  8.     CancelBtn: TButton;
  9.     Bevel1: TBevel;
  10.     Label1: TLabel;
  11.     Label2: TLabel;
  12.     Label3: TLabel;
  13.     Label4: TLabel;
  14.     Label5: TLabel;
  15.     Label6: TLabel;
  16.     GLBA: TSpinEdit;
  17.     BufLen: TSpinEdit;
  18.     FUA: TCheckBox;
  19.     Label7: TLabel;
  20.     Label8: TLabel;
  21.     Label9: TLabel;
  22.     Sectors: TSpinEdit;
  23.     Label10: TLabel;
  24.     Label11: TLabel;
  25.     Label12: TLabel;
  26.     DPO: TCheckBox;
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32. var
  33.   Read10Dlg: TRead10Dlg;
  34. implementation
  35. {$R *.DFM}
  36. end.