Main.dfm 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. object formMain: TformMain
  2. Left = 339
  3. Top = 149
  4. Width = 416
  5. Height = 373
  6. Caption = 'Fiber Playground'
  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. OnDestroy = FormDestroy
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object Button1: TButton
  18. Left = 8
  19. Top = 8
  20. Width = 75
  21. Height = 25
  22. Caption = 'TCP Server'
  23. Default = True
  24. TabOrder = 0
  25. OnClick = Button1Click
  26. end
  27. object Button2: TButton
  28. Left = 104
  29. Top = 8
  30. Width = 75
  31. Height = 25
  32. Caption = 'HTTP Server'
  33. Default = True
  34. TabOrder = 1
  35. OnClick = Button2Click
  36. end
  37. object memoTest: TMemo
  38. Left = 16
  39. Top = 96
  40. Width = 377
  41. Height = 217
  42. TabOrder = 2
  43. end
  44. object tcpsTest: TIdCmdTCPServer
  45. Bindings = <>
  46. DefaultPort = 6000
  47. Greeting.NumericCode = 201
  48. Greeting.Text.Strings = (
  49. 'Hello and welcome!')
  50. Greeting.TextCode = '201'
  51. IOHandler = IdServerIOHandlerChain1
  52. ListenQueue = 100
  53. MaxConnectionReply.NumericCode = 0
  54. ReplyTexts = <>
  55. Scheduler = IdSchedulerFiber1
  56. CommandHandlers = <
  57. item
  58. CmdDelimiter = ' '
  59. Command = 'Help'
  60. Disconnect = False
  61. Name = 'cmdhHelp'
  62. ParamDelimiter = ' '
  63. ReplyExceptionCode = 0
  64. ReplyNormal.NumericCode = 100
  65. ReplyNormal.Text.Strings = (
  66. 'Help follows')
  67. ReplyNormal.TextCode = '100'
  68. Response.Strings = (
  69. 'Test1'
  70. 'Test2')
  71. Tag = 0
  72. end>
  73. ReplyExceptionCode = 500
  74. ReplyUnknownCommand.NumericCode = 400
  75. ReplyUnknownCommand.Text.Strings = (
  76. 'Unknown Command')
  77. ReplyUnknownCommand.TextCode = '400'
  78. Left = 40
  79. Top = 48
  80. end
  81. object IdServerIOHandlerChain1: TIdServerIOHandlerChain
  82. ChainEngine = IdChainEngineStack1
  83. Left = 120
  84. Top = 48
  85. end
  86. object IdChainEngineStack1: TIdChainEngineStack
  87. Left = 208
  88. Top = 48
  89. end
  90. object IdSchedulerFiber1: TIdSchedulerFiber
  91. Left = 120
  92. Top = 96
  93. end
  94. end