Unit3.pas
上传用户:lzd18710
上传日期:2009-11-26
资源大小:3595k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual Basic

  1. unit Unit3;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls, Buttons, ExtCtrls;
  6. type
  7.   TForm3 = class(TForm)
  8.     rgrpConnect: TRadioGroup;
  9.     Label1: TLabel;
  10.     Label2: TLabel;
  11.     Label3: TLabel;
  12.     Edit1: TEdit;
  13.     Edit2: TEdit;
  14.     Edit3: TEdit;
  15.     BitBtn1: TBitBtn;
  16.     BitBtn2: TBitBtn;
  17.     procedure rgrpConnectClick(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23. var
  24.   Form3: TForm3;
  25. implementation
  26. {$R *.dfm}
  27. procedure TForm3.rgrpConnectClick(Sender: TObject);
  28. begin
  29.   if rgrpConnect.ItemIndex =0 then
  30.   begin
  31.     Label1.Caption := 'COM Port:';
  32.     Label2.Caption := 'Device ID:';
  33.     edit1.Text := 'COM1';
  34.     edit2.Text := '1';
  35.     Label3.Visible := true;
  36.     edit3.Visible := true;
  37.   end
  38.   else
  39.   begin
  40.     Label1.Caption := 'IPAddress:';
  41.     Label2.Caption := 'Port Number:';
  42.     edit1.Text := '192.168.1.201';
  43.     edit2.Text := '4370';
  44.     Label3.Visible := false;
  45.     edit3.Visible := false;
  46.   end;
  47. end;
  48. end.