Unit1.~dfm
上传用户:wshicoco
上传日期:2009-03-23
资源大小:1150k
文件大小:4k
源码类别:

Ftp服务器

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 339
  3.   Top = 102
  4.   Width = 405
  5.   Height = 404
  6.   Caption = 'Tftp server'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object PageControl1: TPageControl
  18.     Left = 0
  19.     Top = 0
  20.     Width = 397
  21.     Height = 370
  22.     ActivePage = TabSheet1
  23.     Align = alClient
  24.     TabOrder = 0
  25.     object TabSheet1: TTabSheet
  26.       Caption = #26381#21153#22120#31471
  27.       object Label1: TLabel
  28.         Left = 8
  29.         Top = 32
  30.         Width = 40
  31.         Height = 13
  32.         Caption = #26412#22320'IP  '
  33.       end
  34.       object Label2: TLabel
  35.         Left = 160
  36.         Top = 32
  37.         Width = 54
  38.         Height = 13
  39.         Caption = #26412#22320#31471#21475'  '
  40.       end
  41.       object Label3: TLabel
  42.         Left = 8
  43.         Top = 168
  44.         Width = 66
  45.         Height = 13
  46.         Caption = #20849#20139#30446#24405'      '
  47.       end
  48.       object Label5: TLabel
  49.         Left = 8
  50.         Top = 96
  51.         Width = 69
  52.         Height = 13
  53.         Caption = #26368#22823#36830#25509#25968'   '
  54.       end
  55.       object locIP_edit: TEdit
  56.         Left = 8
  57.         Top = 56
  58.         Width = 121
  59.         Height = 21
  60.         Enabled = False
  61.         ReadOnly = True
  62.         TabOrder = 0
  63.       end
  64.       object locPort_edit: TEdit
  65.         Left = 160
  66.         Top = 56
  67.         Width = 73
  68.         Height = 21
  69.         TabOrder = 1
  70.         Text = '69'
  71.       end
  72.       object apply_button: TButton
  73.         Left = 248
  74.         Top = 56
  75.         Width = 57
  76.         Height = 25
  77.         Caption = #20462#25913
  78.         TabOrder = 2
  79.         OnClick = apply_buttonClick
  80.       end
  81.       object path_edit: TEdit
  82.         Left = 8
  83.         Top = 192
  84.         Width = 233
  85.         Height = 21
  86.         TabOrder = 3
  87.       end
  88.       object dir_button: TButton
  89.         Left = 264
  90.         Top = 192
  91.         Width = 75
  92.         Height = 25
  93.         Caption = #20462#25913
  94.         TabOrder = 4
  95.         OnClick = dir_buttonClick
  96.       end
  97.       object start_button: TButton
  98.         Left = 168
  99.         Top = 248
  100.         Width = 89
  101.         Height = 33
  102.         Caption = #21551#21160#26381#21153#22120
  103.         TabOrder = 5
  104.         OnClick = start_buttonClick
  105.       end
  106.       object StatusBar: TStatusBar
  107.         Left = 0
  108.         Top = 323
  109.         Width = 389
  110.         Height = 19
  111.         Panels = <
  112.           item
  113.             Text = #29366#24577
  114.             Width = 100
  115.           end>
  116.       end
  117.       object link_edit: TEdit
  118.         Left = 8
  119.         Top = 120
  120.         Width = 57
  121.         Height = 21
  122.         MaxLength = 2
  123.         TabOrder = 7
  124.         Text = '3'
  125.       end
  126.       object link_button: TButton
  127.         Left = 80
  128.         Top = 120
  129.         Width = 49
  130.         Height = 25
  131.         Caption = #20462#25913
  132.         TabOrder = 8
  133.         OnClick = link_buttonClick
  134.       end
  135.     end
  136.     object TabSheet2: TTabSheet
  137.       Caption = #26085#24535
  138.       ImageIndex = 1
  139.       object Label4: TLabel
  140.         Left = 0
  141.         Top = 8
  142.         Width = 66
  143.         Height = 13
  144.         Caption = #26381#21153#22120#26085#24535'  '
  145.       end
  146.       object logmemo: TMemo
  147.         Left = 0
  148.         Top = 0
  149.         Width = 389
  150.         Height = 345
  151.         Align = alTop
  152.         ReadOnly = True
  153.         ScrollBars = ssVertical
  154.         TabOrder = 0
  155.       end
  156.       object clear_Button: TButton
  157.         Left = 24
  158.         Top = 352
  159.         Width = 75
  160.         Height = 25
  161.         Caption = #28165#31354
  162.         TabOrder = 1
  163.         OnClick = clear_ButtonClick
  164.       end
  165.       object save_button: TButton
  166.         Left = 160
  167.         Top = 352
  168.         Width = 75
  169.         Height = 25
  170.         Caption = #20445#23384
  171.         TabOrder = 2
  172.         OnClick = save_buttonClick
  173.       end
  174.     end
  175.   end
  176.   object Server: TIdUDPServer
  177.     Bindings = <>
  178.     DefaultPort = 69
  179.     OnUDPRead = ServerUDPRead
  180.     Left = 192
  181.     Top = 24
  182.   end
  183.   object Timer1: TTimer
  184.     OnTimer = Timer1Timer
  185.     Left = 156
  186.     Top = 24
  187.   end
  188.   object IPWatch: TIdIPWatch
  189.     Active = False
  190.     HistoryEnabled = False
  191.     HistoryFilename = 'iphist.dat'
  192.     Left = 220
  193.     Top = 24
  194.   end
  195. end