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

家庭/个人应用

开发平台:

Visual C++

  1. unit uServerStatus;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TServerStatus = class(TForm)
  7.     OKBtn: TButton;
  8.     StartTime: TEdit;
  9.     CurrentTime: TEdit;
  10.     LastUpdate: TEdit;
  11.     ServerState: TEdit;
  12.     GroupCount: TEdit;
  13.     BandWidth: TEdit;
  14.     MajorVersion: TEdit;
  15.     MinorVersion: TEdit;
  16.     BuildVersion: TEdit;
  17.     Label1: TLabel;
  18.     Label2: TLabel;
  19.     Label3: TLabel;
  20.     Label4: TLabel;
  21.     Label5: TLabel;
  22.     Label6: TLabel;
  23.     Label7: TLabel;
  24.     Label8: TLabel;
  25.     Label9: TLabel;
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31. var
  32.   ServerStatus: TServerStatus;
  33. implementation
  34. {$R *.dfm}
  35. end.