capturemain.dfm 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. object frmCapture: TfrmCapture
  2. Left = 178
  3. Top = 124
  4. Width = 544
  5. Height = 384
  6. Caption = 'FTP Dir Capture Utility'
  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. DesignSize = (
  15. 536
  16. 357)
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object lblHost: TLabel
  20. Left = 120
  21. Top = 8
  22. Width = 25
  23. Height = 13
  24. Caption = '&Host:'
  25. FocusControl = edtHost
  26. end
  27. object lblUserName: TLabel
  28. Left = 88
  29. Top = 40
  30. Width = 56
  31. Height = 13
  32. Caption = '&User Name:'
  33. FocusControl = edtUsername
  34. end
  35. object lblPassword: TLabel
  36. Left = 96
  37. Top = 72
  38. Width = 49
  39. Height = 13
  40. Caption = '&Password:'
  41. FocusControl = edtPassword
  42. end
  43. object lblCaptureFileName: TLabel
  44. Left = 40
  45. Top = 168
  46. Width = 102
  47. Height = 13
  48. Caption = 'Capture to &File Name:'
  49. FocusControl = edtFileName
  50. end
  51. object lblRemoteDir: TLabel
  52. Left = 88
  53. Top = 104
  54. Width = 56
  55. Height = 13
  56. Caption = '&Remote Dir:'
  57. FocusControl = edtRemoteDir
  58. end
  59. object lblParameters: TLabel
  60. Left = 88
  61. Top = 136
  62. Width = 56
  63. Height = 13
  64. Caption = 'Parameters:'
  65. FocusControl = edtParams
  66. end
  67. object mmoLog: TMemo
  68. Left = 8
  69. Top = 232
  70. Width = 513
  71. Height = 122
  72. Anchors = [akLeft, akTop, akRight, akBottom]
  73. ScrollBars = ssBoth
  74. TabOrder = 0
  75. WordWrap = False
  76. end
  77. object chkUsePasv: TCheckBox
  78. Left = 152
  79. Top = 200
  80. Width = 233
  81. Height = 17
  82. Anchors = [akLeft, akTop, akRight]
  83. Caption = 'Use PA&SV transfers'
  84. TabOrder = 8
  85. end
  86. object edtUsername: TEdit
  87. Left = 152
  88. Top = 40
  89. Width = 233
  90. Height = 21
  91. Anchors = [akLeft, akTop, akRight]
  92. TabOrder = 2
  93. end
  94. object edtPassword: TEdit
  95. Left = 152
  96. Top = 72
  97. Width = 233
  98. Height = 21
  99. Anchors = [akLeft, akTop, akRight]
  100. TabOrder = 3
  101. end
  102. object edtHost: TEdit
  103. Left = 152
  104. Top = 8
  105. Width = 233
  106. Height = 21
  107. Anchors = [akLeft, akTop, akRight]
  108. TabOrder = 1
  109. end
  110. object edtFileName: TEdit
  111. Left = 152
  112. Top = 168
  113. Width = 233
  114. Height = 21
  115. Anchors = [akLeft, akTop, akRight]
  116. TabOrder = 4
  117. end
  118. object btnGo: TButton
  119. Left = 408
  120. Top = 200
  121. Width = 75
  122. Height = 25
  123. Anchors = [akTop, akRight]
  124. Caption = '&Go'
  125. TabOrder = 9
  126. OnClick = btnGoClick
  127. end
  128. object btnBrowse: TButton
  129. Left = 408
  130. Top = 168
  131. Width = 75
  132. Height = 25
  133. Anchors = [akTop, akRight]
  134. Caption = '&Browse'
  135. TabOrder = 7
  136. OnClick = btnBrowseClick
  137. end
  138. object edtRemoteDir: TEdit
  139. Left = 152
  140. Top = 104
  141. Width = 233
  142. Height = 21
  143. TabOrder = 5
  144. end
  145. object edtParams: TEdit
  146. Left = 152
  147. Top = 136
  148. Width = 233
  149. Height = 21
  150. TabOrder = 6
  151. end
  152. object svdlgCapture: TSaveDialog
  153. DefaultExt = 'txt'
  154. Filter = 'Text File (*.txt)|*.txt|Any File (*.*)|*.*'
  155. Left = 488
  156. Top = 104
  157. end
  158. object IdFTPCapture: TIdFTP
  159. Intercept = IdLog
  160. MaxLineAction = maException
  161. ProxySettings.ProxyType = fpcmNone
  162. ProxySettings.Port = 0
  163. OnCheckListFormat = IdFTPCaptureCheckListFormat
  164. OnParseCustomListFormat = IdFTPCaptureParseCustomListFormat
  165. Left = 48
  166. Top = 192
  167. end
  168. object IdLog: TIdLogEvent
  169. Active = True
  170. OnReceived = IdLogReceived
  171. OnSent = IdLogSent
  172. Left = 96
  173. Top = 192
  174. end
  175. end