home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / FastNet / Ftp / FTPDEM.DFM / FTPDEM.txt
Encoding:
Text File  |  1999-08-11  |  11.1 KB  |  531 lines

  1. object Form1: TForm1
  2.   Left = 195
  3.   Top = 109
  4.   Width = 525
  5.   Height = 317
  6.   Caption = 'FTP Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -14
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = True
  14.   OnCloseQuery = FormCloseQuery
  15.   PixelsPerInch = 120
  16.   TextHeight = 16
  17.   object PageControl1: TPageControl
  18.     Left = 0
  19.     Top = 0
  20.     Width = 517
  21.     Height = 267
  22.     ActivePage = TabSheet1
  23.     Align = alClient
  24.     MultiLine = True
  25.     TabOrder = 0
  26.     object TabSheet1: TTabSheet
  27.       Caption = 'Account'
  28.       object Label1: TLabel
  29.         Left = 94
  30.         Top = 15
  31.         Width = 28
  32.         Height = 16
  33.         Caption = 'Host'
  34.       end
  35.       object Label2: TLabel
  36.         Left = 98
  37.         Top = 44
  38.         Width = 24
  39.         Height = 16
  40.         Caption = 'Port'
  41.       end
  42.       object Label3: TLabel
  43.         Left = 76
  44.         Top = 76
  45.         Width = 45
  46.         Height = 16
  47.         Caption = 'User ID'
  48.       end
  49.       object Label4: TLabel
  50.         Left = 65
  51.         Top = 107
  52.         Width = 60
  53.         Height = 16
  54.         Caption = 'Password'
  55.       end
  56.       object Label16: TLabel
  57.         Left = 327
  58.         Top = 34
  59.         Width = 77
  60.         Height = 16
  61.         Caption = 'Proxy Server'
  62.       end
  63.       object Label17: TLabel
  64.         Left = 327
  65.         Top = 98
  66.         Width = 61
  67.         Height = 16
  68.         Caption = 'Proxy Port'
  69.       end
  70.       object HostTxt: TEdit
  71.         Left = 134
  72.         Top = 11
  73.         Width = 149
  74.         Height = 24
  75.         TabOrder = 0
  76.         Text = 'ftp.borland.com'
  77.       end
  78.       object PortTxt: TEdit
  79.         Left = 134
  80.         Top = 41
  81.         Width = 35
  82.         Height = 24
  83.         TabOrder = 1
  84.         Text = '21'
  85.       end
  86.       object Button1: TButton
  87.         Left = 94
  88.         Top = 175
  89.         Width = 92
  90.         Height = 31
  91.         Caption = 'Connect'
  92.         TabOrder = 2
  93.         OnClick = Button1Click
  94.       end
  95.       object Button2: TButton
  96.         Left = 186
  97.         Top = 175
  98.         Width = 92
  99.         Height = 31
  100.         Caption = 'Disconnect'
  101.         TabOrder = 3
  102.         OnClick = Button2Click
  103.       end
  104.       object UserTxt: TEdit
  105.         Left = 134
  106.         Top = 71
  107.         Width = 149
  108.         Height = 24
  109.         TabOrder = 4
  110.         Text = 'anonymous'
  111.       end
  112.       object PassTxt: TEdit
  113.         Left = 134
  114.         Top = 102
  115.         Width = 149
  116.         Height = 24
  117.         TabOrder = 5
  118.         Text = 'user@host.com'
  119.       end
  120.       object CheckBox1: TCheckBox
  121.         Left = 326
  122.         Top = 10
  123.         Width = 128
  124.         Height = 21
  125.         Caption = 'Use Proxy Server'
  126.         TabOrder = 6
  127.       end
  128.       object Edit6: TEdit
  129.         Left = 325
  130.         Top = 59
  131.         Width = 149
  132.         Height = 24
  133.         TabOrder = 7
  134.       end
  135.       object Edit7: TEdit
  136.         Left = 325
  137.         Top = 118
  138.         Width = 41
  139.         Height = 24
  140.         TabOrder = 8
  141.       end
  142.     end
  143.     object TabSheet2: TTabSheet
  144.       Caption = 'File/Directory List'
  145.       object Memo1: TMemo
  146.         Left = 0
  147.         Top = 66
  148.         Width = 509
  149.         Height = 149
  150.         Align = alBottom
  151.         TabOrder = 0
  152.       end
  153.       object Button3: TButton
  154.         Left = 92
  155.         Top = 12
  156.         Width = 93
  157.         Height = 30
  158.         Caption = 'NList'
  159.         TabOrder = 1
  160.         OnClick = Button3Click
  161.       end
  162.       object Button4: TButton
  163.         Left = 233
  164.         Top = 12
  165.         Width = 92
  166.         Height = 30
  167.         Caption = 'List'
  168.         TabOrder = 2
  169.         OnClick = Button4Click
  170.       end
  171.     end
  172.     object TabSheet3: TTabSheet
  173.       Caption = 'ChangeDir'
  174.       OnMouseMove = TabSheet3MouseMove
  175.       object Label5: TLabel
  176.         Left = 0
  177.         Top = 0
  178.         Width = 41
  179.         Height = 16
  180.         Align = alTop
  181.         Alignment = taCenter
  182.         Caption = 'Label5'
  183.       end
  184.       object Label6: TLabel
  185.         Left = 80
  186.         Top = 44
  187.         Width = 93
  188.         Height = 16
  189.         Caption = 'Change Dir To: '
  190.       end
  191.       object DirTxt: TEdit
  192.         Left = 174
  193.         Top = 39
  194.         Width = 148
  195.         Height = 24
  196.         TabOrder = 0
  197.       end
  198.       object Button5: TButton
  199.         Left = 153
  200.         Top = 75
  201.         Width = 92
  202.         Height = 31
  203.         Caption = 'Change'
  204.         TabOrder = 1
  205.         OnClick = Button5Click
  206.       end
  207.     end
  208.     object TabSheet4: TTabSheet
  209.       Caption = 'Download'
  210.       object Label7: TLabel
  211.         Left = 90
  212.         Top = 34
  213.         Width = 73
  214.         Height = 16
  215.         Caption = 'Remote File'
  216.       end
  217.       object Label8: TLabel
  218.         Left = 106
  219.         Top = 63
  220.         Width = 58
  221.         Height = 16
  222.         Caption = 'Local File'
  223.       end
  224.       object RemoteTxt: TEdit
  225.         Left = 174
  226.         Top = 30
  227.         Width = 149
  228.         Height = 24
  229.         TabOrder = 0
  230.       end
  231.       object LocalTxt: TEdit
  232.         Left = 174
  233.         Top = 59
  234.         Width = 149
  235.         Height = 24
  236.         TabOrder = 1
  237.       end
  238.       object Button6: TButton
  239.         Left = 113
  240.         Top = 95
  241.         Width = 93
  242.         Height = 31
  243.         Caption = 'Download'
  244.         TabOrder = 2
  245.         OnClick = Button6Click
  246.       end
  247.       object Button7: TButton
  248.         Left = 231
  249.         Top = 95
  250.         Width = 93
  251.         Height = 31
  252.         Caption = 'Abort'
  253.         TabOrder = 3
  254.         OnClick = Button7Click
  255.       end
  256.       object Button8: TButton
  257.         Left = 148
  258.         Top = 134
  259.         Width = 136
  260.         Height = 31
  261.         Caption = 'Download Restore'
  262.         TabOrder = 4
  263.         OnClick = Button8Click
  264.       end
  265.     end
  266.     object TabSheet6: TTabSheet
  267.       Caption = 'Upload'
  268.       object Label11: TLabel
  269.         Left = 86
  270.         Top = 23
  271.         Width = 58
  272.         Height = 16
  273.         Caption = 'Local File'
  274.       end
  275.       object Label12: TLabel
  276.         Left = 71
  277.         Top = 54
  278.         Width = 73
  279.         Height = 16
  280.         Caption = 'Remote File'
  281.       end
  282.       object Label9: TLabel
  283.         Left = 188
  284.         Top = 185
  285.         Width = 147
  286.         Height = 16
  287.         Caption = 'Position to Restore From'
  288.       end
  289.       object Edit3: TEdit
  290.         Left = 154
  291.         Top = 20
  292.         Width = 149
  293.         Height = 24
  294.         TabOrder = 0
  295.       end
  296.       object Edit4: TEdit
  297.         Left = 154
  298.         Top = 49
  299.         Width = 149
  300.         Height = 24
  301.         TabOrder = 1
  302.       end
  303.       object Button10: TButton
  304.         Left = 188
  305.         Top = 94
  306.         Width = 93
  307.         Height = 30
  308.         Caption = 'Upload'
  309.         TabOrder = 2
  310.         OnClick = Button10Click
  311.       end
  312.       object Button11: TButton
  313.         Left = 64
  314.         Top = 94
  315.         Width = 114
  316.         Height = 30
  317.         Caption = 'Upload Append'
  318.         TabOrder = 3
  319.         OnClick = Button11Click
  320.       end
  321.       object Button9: TButton
  322.         Left = 190
  323.         Top = 134
  324.         Width = 92
  325.         Height = 31
  326.         Caption = 'Abort'
  327.         TabOrder = 4
  328.         OnClick = Button7Click
  329.       end
  330.       object Button12: TButton
  331.         Left = 69
  332.         Top = 134
  333.         Width = 109
  334.         Height = 31
  335.         Caption = 'Upload Unique'
  336.         TabOrder = 5
  337.         OnClick = Button12Click
  338.       end
  339.       object Button13: TButton
  340.         Left = 69
  341.         Top = 177
  342.         Width = 112
  343.         Height = 31
  344.         Caption = 'UploadRestore'
  345.         TabOrder = 6
  346.         OnClick = Button13Click
  347.       end
  348.       object PosTxt: TEdit
  349.         Left = 336
  350.         Top = 180
  351.         Width = 49
  352.         Height = 24
  353.         TabOrder = 7
  354.       end
  355.     end
  356.     object TabSheet5: TTabSheet
  357.       Caption = 'Dir Management'
  358.       object Label10: TLabel
  359.         Left = 90
  360.         Top = 14
  361.         Width = 60
  362.         Height = 16
  363.         Caption = 'Create Dir'
  364.       end
  365.       object Label13: TLabel
  366.         Left = 90
  367.         Top = 142
  368.         Width = 72
  369.         Height = 16
  370.         Caption = 'Remove Dir'
  371.       end
  372.       object Edit1: TEdit
  373.         Left = 174
  374.         Top = 10
  375.         Width = 148
  376.         Height = 24
  377.         TabOrder = 0
  378.       end
  379.       object Edit2: TEdit
  380.         Left = 174
  381.         Top = 138
  382.         Width = 148
  383.         Height = 24
  384.         TabOrder = 1
  385.       end
  386.       object Button14: TButton
  387.         Left = 172
  388.         Top = 46
  389.         Width = 93
  390.         Height = 30
  391.         Caption = 'Create'
  392.         TabOrder = 2
  393.         OnClick = Button14Click
  394.       end
  395.       object Button15: TButton
  396.         Left = 172
  397.         Top = 174
  398.         Width = 93
  399.         Height = 30
  400.         Caption = 'Remove'
  401.         TabOrder = 3
  402.         OnClick = Button15Click
  403.       end
  404.     end
  405.     object TabSheet7: TTabSheet
  406.       Caption = 'Delete'
  407.       object Label14: TLabel
  408.         Left = 105
  409.         Top = 23
  410.         Width = 56
  411.         Height = 16
  412.         Caption = 'Filename'
  413.       end
  414.       object Edit5: TEdit
  415.         Left = 183
  416.         Top = 18
  417.         Width = 149
  418.         Height = 24
  419.         TabOrder = 0
  420.       end
  421.       object Button16: TButton
  422.         Left = 182
  423.         Top = 54
  424.         Width = 92
  425.         Height = 31
  426.         Caption = 'Delete'
  427.         TabOrder = 1
  428.         OnClick = Button16Click
  429.       end
  430.     end
  431.     object TabSheet8: TTabSheet
  432.       Caption = 'Misc'
  433.       object Label15: TLabel
  434.         Left = 129
  435.         Top = 20
  436.         Width = 128
  437.         Height = 99
  438.         AutoSize = False
  439.         Caption = 
  440.           'Resets the server to the authentication phase, so that you could' +
  441.           ' log in with another UserID/Password'
  442.         WordWrap = True
  443.       end
  444.       object Button17: TButton
  445.         Left = 25
  446.         Top = 54
  447.         Width = 92
  448.         Height = 31
  449.         Caption = 'ReInit'
  450.         TabOrder = 0
  451.         OnClick = Button17Click
  452.       end
  453.     end
  454.     object TabSheet9: TTabSheet
  455.       Caption = 'Rename File'
  456.       object Label18: TLabel
  457.         Left = 70
  458.         Top = 53
  459.         Width = 52
  460.         Height = 16
  461.         Caption = 'Rename'
  462.       end
  463.       object Label19: TLabel
  464.         Left = 279
  465.         Top = 53
  466.         Width = 11
  467.         Height = 16
  468.         Caption = 'to'
  469.       end
  470.       object Edit8: TEdit
  471.         Left = 124
  472.         Top = 48
  473.         Width = 149
  474.         Height = 24
  475.         TabOrder = 0
  476.       end
  477.       object Edit9: TEdit
  478.         Left = 299
  479.         Top = 48
  480.         Width = 149
  481.         Height = 24
  482.         TabOrder = 1
  483.       end
  484.       object Button18: TButton
  485.         Left = 197
  486.         Top = 98
  487.         Width = 92
  488.         Height = 31
  489.         Caption = 'Rename'
  490.         TabOrder = 2
  491.         OnClick = Button18Click
  492.       end
  493.     end
  494.   end
  495.   object StatusBar1: TStatusBar
  496.     Left = 0
  497.     Top = 267
  498.     Width = 517
  499.     Height = 23
  500.     Panels = <>
  501.     SimplePanel = True
  502.   end
  503.   object NMFTP1: TNMFTP
  504.     Port = 21
  505.     ReportLevel = 0
  506.     OnDisconnect = NMFTP1Disconnect
  507.     OnConnect = NMFTP1Connect
  508.     OnInvalidHost = NMFTP1InvalidHost
  509.     OnHostResolved = NMFTP1HostResolved
  510.     OnStatus = NMFTP1Status
  511.     OnConnectionFailed = NMFTP1ConnectionFailed
  512.     OnPacketRecvd = NMFTP1PacketRecvd
  513.     OnPacketSent = NMFTP1PacketSent
  514.     OnError = NMFTP1Error
  515.     OnTransactionStart = NMFTP1TransactionStart
  516.     OnTransactionStop = NMFTP1TransactionStop
  517.     OnFailure = NMFTP1Failure
  518.     OnSuccess = NMFTP1Success
  519.     OnListItem = NMFTP1ListItem
  520.     OnUnSupportedFunction = NMFTP1UnSupportedFunction
  521.     Vendor = 2411
  522.     ParseList = False
  523.     ProxyPort = 0
  524.     Passive = False
  525.     FirewallType = FTUser
  526.     FWAuthenticate = False
  527.     Left = 412
  528.     Top = 218
  529.   end
  530. end
  531.