ftplistmainMLSD.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. object Form1: TForm1
  2. Left = 193
  3. Top = 108
  4. Width = 544
  5. Height = 375
  6. Caption = 'Form1'
  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. DesignSize = (
  16. 536
  17. 348)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object lblFileName: TLabel
  21. Left = 8
  22. Top = 16
  23. Width = 50
  24. Height = 13
  25. Caption = '&File Name:'
  26. FocusControl = edtFileName
  27. end
  28. object lblOutputFileName: TLabel
  29. Left = 8
  30. Top = 48
  31. Width = 83
  32. Height = 13
  33. Caption = 'Output FIleName:'
  34. end
  35. object mmoTestLog: TMemo
  36. Left = 8
  37. Top = 80
  38. Width = 513
  39. Height = 257
  40. Anchors = [akLeft, akTop, akRight, akBottom]
  41. Font.Charset = DEFAULT_CHARSET
  42. Font.Color = clWindowText
  43. Font.Height = -11
  44. Font.Name = 'Courier New'
  45. Font.Pitch = fpFixed
  46. Font.Style = []
  47. ParentFont = False
  48. ScrollBars = ssBoth
  49. TabOrder = 0
  50. WordWrap = False
  51. end
  52. object btnTest: TButton
  53. Left = 448
  54. Top = 16
  55. Width = 75
  56. Height = 25
  57. Anchors = [akTop, akRight]
  58. Caption = '&Test'
  59. TabOrder = 1
  60. OnClick = btnTestClick
  61. end
  62. object edtFileName: TEdit
  63. Left = 64
  64. Top = 16
  65. Width = 281
  66. Height = 21
  67. Anchors = [akLeft, akTop, akRight]
  68. TabOrder = 2
  69. end
  70. object bbtnBrowse: TButton
  71. Left = 360
  72. Top = 16
  73. Width = 75
  74. Height = 25
  75. Anchors = [akTop, akRight]
  76. Caption = '&Browse'
  77. TabOrder = 3
  78. OnClick = bbtnBrowseClick
  79. end
  80. object edtOutputFileName: TEdit
  81. Left = 112
  82. Top = 48
  83. Width = 233
  84. Height = 21
  85. TabOrder = 4
  86. end
  87. object btnOBrowse: TButton
  88. Left = 360
  89. Top = 48
  90. Width = 75
  91. Height = 25
  92. Anchors = [akTop, akRight]
  93. Caption = '&Browse'
  94. TabOrder = 5
  95. OnClick = btnOBrowseClick
  96. end
  97. object odlgTestList: TOpenDialog
  98. DefaultExt = 'txt'
  99. Filter = 'Text File (*.txt)|*.txt|All Files (*.*)|*.*'
  100. Left = 264
  101. Top = 8
  102. end
  103. object sdlgOutput: TSaveDialog
  104. DefaultExt = 'txt'
  105. Filter = 'Text File (*.txt)|*.txt|All Files (*.*)|*.*'
  106. Left = 288
  107. Top = 56
  108. end
  109. end