uGroupStatus.pas
上传用户:fuyouda
上传日期:2015-08-19
资源大小:6876k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. unit uGroupStatus;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls;
  6. type
  7.   TGroupStatus = class(TForm)
  8.     Button1: TButton;
  9.     Button2: TButton;
  10.     Name: TEdit;
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     UpdateRate: TEdit;
  14.     Label3: TLabel;
  15.     TimeBias: TEdit;
  16.     Label4: TLabel;
  17.     Active: TCheckBox;
  18.     DeadBand: TEdit;
  19.     Label5: TLabel;
  20.     Label6: TLabel;
  21.     Label7: TLabel;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27. var
  28.   GroupStatus: TGroupStatus;
  29. implementation
  30. {$R *.dfm}
  31. end.