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

SCSI/ASPI

开发平台:

Delphi

  1. unit Unit6;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  4.   Buttons, ExtCtrls, Spin;
  5. type
  6.   TSeek10Dlg = class(TForm)
  7.     OKBtn: TButton;
  8.     CancelBtn: TButton;
  9.     Bevel1: TBevel;
  10.     Label1: TLabel;
  11.     Label2: TLabel;
  12.     Label3: TLabel;
  13.     GLBA: TSpinEdit;
  14.     Label4: TLabel;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   Seek10Dlg: TSeek10Dlg;
  22. implementation
  23. {$R *.DFM}
  24. end.