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

SCSI/ASPI

开发平台:

Delphi

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