home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / ftpconn.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-02  |  882 b   |  45 lines

  1. unit Ftpconn;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls, Mask;
  7.  
  8. type
  9.   TFTPConnectDlg = class(TForm)
  10.     Bevel1: TBevel;
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     Label3: TLabel;
  14.     OKButton: TButton;
  15.     CancelButton: TButton;
  16.     ServerEdit: TEdit;
  17.     UserNameEdit: TEdit;
  18.     PasswordEdit: TEdit;
  19.     Label4: TLabel;
  20.     TransferTypeComboBox: TComboBox;
  21.     Label5: TLabel;
  22.     LogFileNameEdit: TEdit;
  23.     Bevel2: TBevel;
  24.     Label6: TLabel;
  25.     Label7: TLabel;
  26.     ServerTypeRadioGroup: TRadioGroup;
  27.     ProxyPortEdit: TMaskEdit;
  28.     ProxyServerEdit: TEdit;
  29.     PassiveModeCheckBox: TCheckBox;
  30.     Label8: TLabel;
  31.   private
  32.     { Private declarations }
  33.   public
  34.     { Public declarations }
  35.   end;
  36.  
  37. var
  38.   FTPConnectDlg: TFTPConnectDlg;
  39.  
  40. implementation
  41.  
  42. {$R *.DFM}
  43.  
  44. end.
  45.