Pop3MainUnit.dfm 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. object Pop3Main: TPop3Main
  2. Left = 330
  3. Top = 105
  4. Width = 420
  5. Height = 412
  6. Caption = 'Pop3 Server'
  7. Color = clBtnFace
  8. Constraints.MinHeight = 412
  9. Constraints.MinWidth = 420
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. Menu = MainMenu1
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnShow = FormShow
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Memo1: TMemo
  22. Left = 30
  23. Top = 10
  24. Width = 362
  25. Height = 257
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. Lines.Strings = (
  28. 'Memo1')
  29. ScrollBars = ssBoth
  30. TabOrder = 0
  31. end
  32. object GetSendBtn: TBitBtn
  33. Left = 145
  34. Top = 283
  35. Width = 146
  36. Height = 25
  37. Anchors = [akLeft, akBottom]
  38. Caption = 'Get / Send mail now'
  39. TabOrder = 1
  40. OnClick = GetSendBtnClick
  41. end
  42. object Panel1: TPanel
  43. Left = 0
  44. Top = 325
  45. Width = 412
  46. Height = 41
  47. Align = alBottom
  48. TabOrder = 2
  49. object StartBtn: TButton
  50. Left = 70
  51. Top = 11
  52. Width = 75
  53. Height = 25
  54. Caption = 'Start Server'
  55. TabOrder = 0
  56. OnClick = StartBtnClick
  57. end
  58. object StopBtn: TButton
  59. Left = 335
  60. Top = 11
  61. Width = 75
  62. Height = 25
  63. Caption = 'Stop Server'
  64. Enabled = False
  65. TabOrder = 1
  66. OnClick = StopBtnClick
  67. end
  68. end
  69. object MainMenu1: TMainMenu
  70. Left = 155
  71. Top = 10
  72. object File1: TMenuItem
  73. Caption = 'File'
  74. object Close1: TMenuItem
  75. Caption = 'Close'
  76. OnClick = Close1Click
  77. end
  78. end
  79. object Extra1: TMenuItem
  80. Caption = 'Extra'
  81. object Options1: TMenuItem
  82. Caption = 'Options'
  83. OnClick = Options1Click
  84. end
  85. end
  86. end
  87. object CheckTimer: TTimer
  88. Enabled = False
  89. OnTimer = CheckTimerTimer
  90. Left = 230
  91. Top = 10
  92. end
  93. end