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

SCSI/ASPI

开发平台:

Delphi

  1. unit Unit11;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  4.   Buttons, ExtCtrls, ComCtrls, Mask, Spin;
  5. type
  6.   TReadLongDlg = 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.     CORR: TCheckBox;
  19.     Label7: TLabel;
  20.     Label8: TLabel;
  21.     Label9: TLabel;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27. var
  28.   ReadLongDlg: TReadLongDlg;
  29. implementation
  30. {$R *.DFM}
  31. end.