home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / USRINFO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-11  |  570 b   |  36 lines

  1. unit UsrInfo;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TConnectForm = class(TForm)
  11.     Label1: TLabel;
  12.     RemoteHostEdit: TEdit;
  13.     Label2: TLabel;
  14.     UserNameEdit: TEdit;
  15.     PasswordEdit: TEdit;
  16.     Label3: TLabel;
  17.     RemotePortEdit: TEdit;
  18.     Label4: TLabel;
  19.     OkBtn: TButton;
  20.     CancelBtn: TButton;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   ConnectForm: TConnectForm;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.  
  36.