home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kompon / d567 / MAIL2000.ZIP / DemoForm.dfm / DemoForm.txt
Text File  |  2001-09-05  |  28KB  |  1,103 lines

  1. object Form1: TForm1
  2.   Left = 154
  3.   Top = 82
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Mail2000 Demo'
  7.   ClientHeight = 429
  8.   ClientWidth = 618
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poDesktopCenter
  17.   OnClose = FormClose
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object PageControl1: TPageControl
  22.     Left = 0
  23.     Top = 0
  24.     Width = 618
  25.     Height = 429
  26.     ActivePage = TabSheet3
  27.     Align = alClient
  28.     TabOrder = 0
  29.     object TabSheet1: TTabSheet
  30.       Caption = 'POP3'
  31.       object Label1: TLabel
  32.         Left = 20
  33.         Top = 24
  34.         Width = 121
  35.         Height = 13
  36.         AutoSize = False
  37.         Caption = 'Host'
  38.         FocusControl = eHost
  39.       end
  40.       object Label2: TLabel
  41.         Left = 20
  42.         Top = 68
  43.         Width = 121
  44.         Height = 13
  45.         AutoSize = False
  46.         Caption = 'UserName'
  47.         FocusControl = eUsername
  48.       end
  49.       object Label3: TLabel
  50.         Left = 20
  51.         Top = 112
  52.         Width = 121
  53.         Height = 13
  54.         AutoSize = False
  55.         Caption = 'Password'
  56.         FocusControl = ePassword
  57.       end
  58.       object lStatus: TLabel
  59.         Left = 20
  60.         Top = 288
  61.         Width = 153
  62.         Height = 13
  63.         Alignment = taCenter
  64.         AutoSize = False
  65.         Caption = 'Disconnected'
  66.       end
  67.       object Label4: TLabel
  68.         Left = 300
  69.         Top = 24
  70.         Width = 181
  71.         Height = 13
  72.         AutoSize = False
  73.         Caption = 'Last response (may be truncated)'
  74.       end
  75.       object Label25: TLabel
  76.         Left = 8
  77.         Top = 359
  78.         Width = 246
  79.         Height = 13
  80.         Anchors = [akLeft, akBottom]
  81.         Caption = 'Comments to: tmail2000@yahoogroups.com'
  82.         Font.Charset = DEFAULT_CHARSET
  83.         Font.Color = clBlue
  84.         Font.Height = -11
  85.         Font.Name = 'MS Sans Serif'
  86.         Font.Style = [fsBold]
  87.         ParentFont = False
  88.       end
  89.       object Label26: TLabel
  90.         Left = 152
  91.         Top = 24
  92.         Width = 50
  93.         Height = 13
  94.         AutoSize = False
  95.         Caption = 'Port'
  96.         FocusControl = ePort
  97.       end
  98.       object Label31: TLabel
  99.         Left = 8
  100.         Top = 375
  101.         Width = 493
  102.         Height = 13
  103.         Anchors = [akLeft, akBottom]
  104.         Caption = 
  105.           'Please visit and check for lastest version at http://groups.yaho' +
  106.           'o.com/group/tmail2000'
  107.         Font.Charset = DEFAULT_CHARSET
  108.         Font.Color = clBlue
  109.         Font.Height = -11
  110.         Font.Name = 'MS Sans Serif'
  111.         Font.Style = [fsBold]
  112.         ParentFont = False
  113.       end
  114.       object Label30: TLabel
  115.         Left = 76
  116.         Top = 200
  117.         Width = 65
  118.         Height = 13
  119.         Caption = '<- Message #'
  120.       end
  121.       object bConnect: TButton
  122.         Left = 20
  123.         Top = 160
  124.         Width = 75
  125.         Height = 25
  126.         Caption = 'Connect'
  127.         TabOrder = 4
  128.         OnClick = bConnectClick
  129.       end
  130.       object eHost: TEdit
  131.         Left = 20
  132.         Top = 40
  133.         Width = 121
  134.         Height = 21
  135.         TabOrder = 0
  136.       end
  137.       object eUsername: TEdit
  138.         Left = 20
  139.         Top = 84
  140.         Width = 121
  141.         Height = 21
  142.         TabOrder = 2
  143.       end
  144.       object ePassword: TEdit
  145.         Left = 20
  146.         Top = 128
  147.         Width = 121
  148.         Height = 21
  149.         PasswordChar = '*'
  150.         TabOrder = 3
  151.       end
  152.       object bDisconnect: TButton
  153.         Left = 104
  154.         Top = 160
  155.         Width = 77
  156.         Height = 25
  157.         Caption = 'Disconnect'
  158.         Enabled = False
  159.         TabOrder = 5
  160.         OnClick = bDisconnectClick
  161.       end
  162.       object bRetrieve: TButton
  163.         Left = 20
  164.         Top = 228
  165.         Width = 77
  166.         Height = 21
  167.         Caption = 'Retrieve'
  168.         Enabled = False
  169.         TabOrder = 9
  170.         OnClick = bRetrieveClick
  171.       end
  172.       object eMsgNum: TEdit
  173.         Left = 20
  174.         Top = 196
  175.         Width = 33
  176.         Height = 21
  177.         TabOrder = 7
  178.         Text = '1'
  179.       end
  180.       object UpDown1: TUpDown
  181.         Left = 53
  182.         Top = 196
  183.         Width = 15
  184.         Height = 21
  185.         Associate = eMsgNum
  186.         Min = 1
  187.         Position = 1
  188.         TabOrder = 8
  189.         Wrap = False
  190.       end
  191.       object ProgressBar1: TProgressBar
  192.         Left = 20
  193.         Top = 307
  194.         Width = 150
  195.         Height = 16
  196.         Anchors = [akLeft, akBottom]
  197.         Min = 0
  198.         Max = 100
  199.         TabOrder = 13
  200.       end
  201.       object ProgressBar2: TProgressBar
  202.         Left = 20
  203.         Top = 331
  204.         Width = 150
  205.         Height = 16
  206.         Anchors = [akLeft, akBottom]
  207.         Min = 0
  208.         Max = 100
  209.         TabOrder = 14
  210.       end
  211.       object ePort: TEdit
  212.         Left = 152
  213.         Top = 40
  214.         Width = 50
  215.         Height = 21
  216.         TabOrder = 1
  217.         Text = '110'
  218.       end
  219.       object mResponse: TMemo
  220.         Left = 300
  221.         Top = 40
  222.         Width = 281
  223.         Height = 325
  224.         Font.Charset = ANSI_CHARSET
  225.         Font.Color = clWindowText
  226.         Font.Height = -11
  227.         Font.Name = 'Courier New'
  228.         Font.Style = []
  229.         ParentFont = False
  230.         ReadOnly = True
  231.         ScrollBars = ssBoth
  232.         TabOrder = 15
  233.       end
  234.       object cbHeader: TCheckBox
  235.         Left = 104
  236.         Top = 230
  237.         Width = 97
  238.         Height = 17
  239.         Caption = 'Only header'
  240.         TabOrder = 10
  241.       end
  242.       object bDelete: TButton
  243.         Left = 20
  244.         Top = 256
  245.         Width = 77
  246.         Height = 21
  247.         Caption = 'Delete'
  248.         Enabled = False
  249.         TabOrder = 11
  250.         OnClick = bDeleteClick
  251.       end
  252.       object bUIDL: TButton
  253.         Left = 104
  254.         Top = 256
  255.         Width = 77
  256.         Height = 21
  257.         Caption = 'Get UIDL'
  258.         Enabled = False
  259.         TabOrder = 12
  260.         OnClick = bUIDLClick
  261.       end
  262.       object bAbort: TButton
  263.         Left = 188
  264.         Top = 160
  265.         Width = 77
  266.         Height = 25
  267.         Caption = 'Abort'
  268.         TabOrder = 6
  269.         OnClick = bAbortClick
  270.       end
  271.     end
  272.     object TabSheet2: TTabSheet
  273.       Caption = 'Message'
  274.       ImageIndex = 1
  275.       object PageControl2: TPageControl
  276.         Left = 0
  277.         Top = 0
  278.         Width = 610
  279.         Height = 401
  280.         ActivePage = TabSheet7
  281.         Align = alClient
  282.         TabOrder = 0
  283.         object TabSheet5: TTabSheet
  284.           Caption = 'Header'
  285.           ImageIndex = 1
  286.           object Label7: TLabel
  287.             Left = 20
  288.             Top = 8
  289.             Width = 121
  290.             Height = 13
  291.             AutoSize = False
  292.             Caption = 'From name'
  293.             FocusControl = eFromName
  294.           end
  295.           object Label8: TLabel
  296.             Left = 20
  297.             Top = 52
  298.             Width = 121
  299.             Height = 13
  300.             AutoSize = False
  301.             Caption = 'From address'
  302.             FocusControl = eFromAddress
  303.           end
  304.           object Label10: TLabel
  305.             Left = 308
  306.             Top = 8
  307.             Width = 121
  308.             Height = 13
  309.             AutoSize = False
  310.             Caption = 'Reply-to name'
  311.             FocusControl = eReplyName
  312.           end
  313.           object Label11: TLabel
  314.             Left = 308
  315.             Top = 52
  316.             Width = 121
  317.             Height = 13
  318.             AutoSize = False
  319.             Caption = 'Reply-to address'
  320.             FocusControl = eReplyAddress
  321.           end
  322.           object Label12: TLabel
  323.             Left = 20
  324.             Top = 96
  325.             Width = 121
  326.             Height = 13
  327.             AutoSize = False
  328.             Caption = 'Subject'
  329.             FocusControl = eSubject
  330.           end
  331.           object Label13: TLabel
  332.             Left = 308
  333.             Top = 96
  334.             Width = 97
  335.             Height = 13
  336.             AutoSize = False
  337.             Caption = 'Date'
  338.             FocusControl = dtDate
  339.           end
  340.           object Label14: TLabel
  341.             Left = 420
  342.             Top = 96
  343.             Width = 97
  344.             Height = 13
  345.             AutoSize = False
  346.             Caption = 'Time'
  347.             FocusControl = dtTime
  348.           end
  349.           object Label15: TLabel
  350.             Left = 20
  351.             Top = 208
  352.             Width = 121
  353.             Height = 13
  354.             AutoSize = False
  355.             Caption = 'To names'
  356.           end
  357.           object Label16: TLabel
  358.             Left = 308
  359.             Top = 208
  360.             Width = 121
  361.             Height = 13
  362.             AutoSize = False
  363.             Caption = 'To addresses'
  364.           end
  365.           object Label17: TLabel
  366.             Left = 20
  367.             Top = 284
  368.             Width = 121
  369.             Height = 13
  370.             Anchors = [akLeft, akBottom]
  371.             AutoSize = False
  372.             Caption = 'Cc names'
  373.           end
  374.           object Label18: TLabel
  375.             Left = 308
  376.             Top = 284
  377.             Width = 121
  378.             Height = 13
  379.             Anchors = [akLeft, akBottom]
  380.             AutoSize = False
  381.             Caption = 'Cc addresses'
  382.           end
  383.           object Label28: TLabel
  384.             Left = 20
  385.             Top = 140
  386.             Width = 121
  387.             Height = 13
  388.             AutoSize = False
  389.             Caption = 'Name (To or Cc)'
  390.           end
  391.           object Label29: TLabel
  392.             Left = 308
  393.             Top = 140
  394.             Width = 121
  395.             Height = 13
  396.             AutoSize = False
  397.             Caption = 'Address (To or Cc)'
  398.           end
  399.           object eFromName: TEdit
  400.             Left = 20
  401.             Top = 24
  402.             Width = 273
  403.             Height = 21
  404.             TabOrder = 0
  405.           end
  406.           object eFromAddress: TEdit
  407.             Left = 20
  408.             Top = 68
  409.             Width = 273
  410.             Height = 21
  411.             TabOrder = 1
  412.           end
  413.           object eReplyName: TEdit
  414.             Left = 308
  415.             Top = 24
  416.             Width = 273
  417.             Height = 21
  418.             TabOrder = 2
  419.           end
  420.           object eReplyAddress: TEdit
  421.             Left = 308
  422.             Top = 68
  423.             Width = 273
  424.             Height = 21
  425.             TabOrder = 3
  426.           end
  427.           object eSubject: TEdit
  428.             Left = 20
  429.             Top = 112
  430.             Width = 273
  431.             Height = 21
  432.             TabOrder = 4
  433.           end
  434.           object dtDate: TDateTimePicker
  435.             Left = 308
  436.             Top = 112
  437.             Width = 101
  438.             Height = 21
  439.             CalAlignment = dtaLeft
  440.             Date = 36264.335430671290000000
  441.             Time = 36264.335430671290000000
  442.             DateFormat = dfShort
  443.             DateMode = dmComboBox
  444.             Kind = dtkDate
  445.             ParseInput = False
  446.             TabOrder = 5
  447.           end
  448.           object dtTime: TDateTimePicker
  449.             Left = 420
  450.             Top = 112
  451.             Width = 101
  452.             Height = 21
  453.             CalAlignment = dtaLeft
  454.             Date = 36264.335430671290000000
  455.             Time = 36264.335430671290000000
  456.             DateFormat = dfShort
  457.             DateMode = dmComboBox
  458.             Kind = dtkTime
  459.             ParseInput = False
  460.             TabOrder = 6
  461.           end
  462.           object eToName: TEdit
  463.             Left = 20
  464.             Top = 156
  465.             Width = 273
  466.             Height = 21
  467.             TabOrder = 7
  468.           end
  469.           object eToAddress: TEdit
  470.             Left = 308
  471.             Top = 156
  472.             Width = 273
  473.             Height = 21
  474.             TabOrder = 8
  475.           end
  476.           object bAddTo: TButton
  477.             Left = 20
  478.             Top = 184
  479.             Width = 75
  480.             Height = 21
  481.             Caption = 'Add To'
  482.             TabOrder = 9
  483.             OnClick = bAddToClick
  484.           end
  485.           object bAddCc: TButton
  486.             Left = 100
  487.             Top = 184
  488.             Width = 75
  489.             Height = 21
  490.             Caption = 'Add Cc'
  491.             TabOrder = 10
  492.             OnClick = bAddCcClick
  493.           end
  494.           object bClearTo: TButton
  495.             Left = 180
  496.             Top = 184
  497.             Width = 75
  498.             Height = 21
  499.             Caption = 'Clear To'#39's'
  500.             TabOrder = 11
  501.             OnClick = bClearToClick
  502.           end
  503.           object bClearCc: TButton
  504.             Left = 260
  505.             Top = 184
  506.             Width = 75
  507.             Height = 21
  508.             Caption = 'Clear Cc'#39's'
  509.             TabOrder = 12
  510.             OnClick = bClearCcClick
  511.           end
  512.           object mToNames: TListBox
  513.             Left = 20
  514.             Top = 224
  515.             Width = 273
  516.             Height = 53
  517.             Font.Charset = ANSI_CHARSET
  518.             Font.Color = clWindowText
  519.             Font.Height = -11
  520.             Font.Name = 'Courier New'
  521.             Font.Style = []
  522.             ItemHeight = 14
  523.             ParentFont = False
  524.             TabOrder = 14
  525.             OnClick = mToNamesClick
  526.           end
  527.           object mToAddresses: TListBox
  528.             Left = 308
  529.             Top = 224
  530.             Width = 273
  531.             Height = 53
  532.             Font.Charset = ANSI_CHARSET
  533.             Font.Color = clWindowText
  534.             Font.Height = -11
  535.             Font.Name = 'Courier New'
  536.             Font.Style = []
  537.             ItemHeight = 14
  538.             ParentFont = False
  539.             TabOrder = 15
  540.             OnClick = mToAddressesClick
  541.           end
  542.           object mCcNames: TListBox
  543.             Left = 20
  544.             Top = 300
  545.             Width = 273
  546.             Height = 53
  547.             Font.Charset = ANSI_CHARSET
  548.             Font.Color = clWindowText
  549.             Font.Height = -11
  550.             Font.Name = 'Courier New'
  551.             Font.Style = []
  552.             ItemHeight = 14
  553.             ParentFont = False
  554.             TabOrder = 16
  555.             OnClick = mCcNamesClick
  556.           end
  557.           object mCcAddresses: TListBox
  558.             Left = 308
  559.             Top = 300
  560.             Width = 273
  561.             Height = 53
  562.             Font.Charset = ANSI_CHARSET
  563.             Font.Color = clWindowText
  564.             Font.Height = -11
  565.             Font.Name = 'Courier New'
  566.             Font.Style = []
  567.             ItemHeight = 14
  568.             ParentFont = False
  569.             TabOrder = 17
  570.             OnClick = mCcAddressesClick
  571.           end
  572.           object bSaveHeader1: TButton
  573.             Left = 468
  574.             Top = 184
  575.             Width = 115
  576.             Height = 21
  577.             Caption = 'Save fields to header'
  578.             TabOrder = 13
  579.             OnClick = bSaveHeaderClick
  580.           end
  581.         end
  582.         object TabSheet6: TTabSheet
  583.           Caption = 'Body'
  584.           ImageIndex = 2
  585.           object Label6: TLabel
  586.             Left = 20
  587.             Top = 16
  588.             Width = 121
  589.             Height = 13
  590.             AutoSize = False
  591.             Caption = 'Files'
  592.             FocusControl = lbFiles
  593.           end
  594.           object Label5: TLabel
  595.             Left = 20
  596.             Top = 252
  597.             Width = 121
  598.             Height = 13
  599.             Anchors = [akLeft, akBottom]
  600.             AutoSize = False
  601.             Caption = 'Text/html'
  602.           end
  603.           object Label9: TLabel
  604.             Left = 20
  605.             Top = 144
  606.             Width = 121
  607.             Height = 13
  608.             AutoSize = False
  609.             Caption = 'Text/plain'
  610.           end
  611.           object mTextHtml: TMemo
  612.             Left = 20
  613.             Top = 268
  614.             Width = 461
  615.             Height = 85
  616.             Anchors = [akLeft, akRight, akBottom]
  617.             Font.Charset = ANSI_CHARSET
  618.             Font.Color = clWindowText
  619.             Font.Height = -11
  620.             Font.Name = 'Courier New'
  621.             Font.Style = []
  622.             ParentFont = False
  623.             ScrollBars = ssBoth
  624.             TabOrder = 7
  625.           end
  626.           object lbFiles: TListBox
  627.             Left = 20
  628.             Top = 32
  629.             Width = 545
  630.             Height = 69
  631.             Anchors = [akLeft, akTop, akRight]
  632.             ItemHeight = 13
  633.             TabOrder = 0
  634.           end
  635.           object bSave: TButton
  636.             Left = 19
  637.             Top = 112
  638.             Width = 75
  639.             Height = 21
  640.             Anchors = [akTop, akRight]
  641.             Caption = 'Save'
  642.             TabOrder = 1
  643.             OnClick = bSaveClick
  644.           end
  645.           object bAttach: TButton
  646.             Left = 187
  647.             Top = 112
  648.             Width = 75
  649.             Height = 21
  650.             Anchors = [akTop, akRight]
  651.             Caption = 'Attach'
  652.             TabOrder = 2
  653.             OnClick = bAttachClick
  654.           end
  655.           object bHtml: TButton
  656.             Left = 491
  657.             Top = 268
  658.             Width = 75
  659.             Height = 25
  660.             Anchors = [akRight, akBottom]
  661.             Caption = 'Put in msg'
  662.             TabOrder = 8
  663.             OnClick = bHtmlClick
  664.           end
  665.           object mTextPlain: TMemo
  666.             Left = 20
  667.             Top = 160
  668.             Width = 461
  669.             Height = 85
  670.             Anchors = [akLeft, akTop, akRight, akBottom]
  671.             Font.Charset = ANSI_CHARSET
  672.             Font.Color = clWindowText
  673.             Font.Height = -11
  674.             Font.Name = 'Courier New'
  675.             Font.Style = []
  676.             ParentFont = False
  677.             ScrollBars = ssBoth
  678.             TabOrder = 4
  679.           end
  680.           object bPlain: TButton
  681.             Left = 493
  682.             Top = 160
  683.             Width = 75
  684.             Height = 25
  685.             Anchors = [akTop, akRight]
  686.             Caption = 'Put in msg'
  687.             TabOrder = 5
  688.             OnClick = bPlainClick
  689.           end
  690.           object bRemove: TButton
  691.             Left = 103
  692.             Top = 112
  693.             Width = 75
  694.             Height = 21
  695.             Anchors = [akTop, akRight]
  696.             Caption = 'Remove'
  697.             TabOrder = 3
  698.             OnClick = bRemoveClick
  699.           end
  700.           object bPlainRemove: TButton
  701.             Left = 493
  702.             Top = 184
  703.             Width = 75
  704.             Height = 25
  705.             Anchors = [akTop, akRight]
  706.             Caption = 'Remove'
  707.             TabOrder = 6
  708.             OnClick = bPlainRemoveClick
  709.           end
  710.           object bHtmlRemove: TButton
  711.             Left = 491
  712.             Top = 292
  713.             Width = 75
  714.             Height = 25
  715.             Anchors = [akRight, akBottom]
  716.             Caption = 'Remove'
  717.             TabOrder = 9
  718.             OnClick = bHtmlRemoveClick
  719.           end
  720.           object cbEmbedded: TCheckBox
  721.             Left = 272
  722.             Top = 114
  723.             Width = 97
  724.             Height = 17
  725.             Caption = 'Embedded'
  726.             TabOrder = 10
  727.           end
  728.         end
  729.         object TabSheet4: TTabSheet
  730.           Caption = 'Source'
  731.           object Label19: TLabel
  732.             Left = 20
  733.             Top = 16
  734.             Width = 121
  735.             Height = 13
  736.             AutoSize = False
  737.             Caption = 'Header'
  738.             FocusControl = eFromName
  739.           end
  740.           object Label20: TLabel
  741.             Left = 453
  742.             Top = 16
  743.             Width = 121
  744.             Height = 13
  745.             Anchors = [akTop, akRight]
  746.             AutoSize = False
  747.             Caption = 'Label'
  748.             FocusControl = eLabel
  749.           end
  750.           object Label21: TLabel
  751.             Left = 453
  752.             Top = 60
  753.             Width = 121
  754.             Height = 13
  755.             Anchors = [akTop, akRight]
  756.             AutoSize = False
  757.             Caption = 'Value'
  758.             FocusControl = eValue
  759.           end
  760.           object Label22: TLabel
  761.             Left = 20
  762.             Top = 148
  763.             Width = 313
  764.             Height = 13
  765.             AutoSize = False
  766.             Caption = 'Body source (may be truncated - rebuild body to see the changes)'
  767.             FocusControl = eFromName
  768.           end
  769.           object mHeader: TMemo
  770.             Left = 20
  771.             Top = 32
  772.             Width = 410
  773.             Height = 105
  774.             Anchors = [akLeft, akTop, akRight]
  775.             Font.Charset = ANSI_CHARSET
  776.             Font.Color = clWindowText
  777.             Font.Height = -11
  778.             Font.Name = 'Courier New'
  779.             Font.Style = []
  780.             ParentFont = False
  781.             ReadOnly = True
  782.             ScrollBars = ssBoth
  783.             TabOrder = 0
  784.           end
  785.           object eLabel: TEdit
  786.             Left = 453
  787.             Top = 32
  788.             Width = 120
  789.             Height = 21
  790.             Anchors = [akTop, akRight]
  791.             TabOrder = 1
  792.           end
  793.           object eValue: TEdit
  794.             Left = 453
  795.             Top = 76
  796.             Width = 120
  797.             Height = 21
  798.             Anchors = [akTop, akRight]
  799.             TabOrder = 2
  800.           end
  801.           object bLabel: TButton
  802.             Left = 453
  803.             Top = 112
  804.             Width = 57
  805.             Height = 25
  806.             Anchors = [akTop, akRight]
  807.             Caption = 'Set'
  808.             TabOrder = 3
  809.             OnClick = bLabelClick
  810.           end
  811.           object bDelLabel: TButton
  812.             Left = 520
  813.             Top = 112
  814.             Width = 54
  815.             Height = 25
  816.             Anchors = [akTop, akRight]
  817.             Caption = 'Delete'
  818.             TabOrder = 4
  819.             OnClick = bDelLabelClick
  820.           end
  821.           object mBody: TMemo
  822.             Left = 20
  823.             Top = 164
  824.             Width = 410
  825.             Height = 185
  826.             Anchors = [akLeft, akTop, akRight, akBottom]
  827.             Font.Charset = ANSI_CHARSET
  828.             Font.Color = clWindowText
  829.             Font.Height = -11
  830.             Font.Name = 'Courier New'
  831.             Font.Style = []
  832.             ParentFont = False
  833.             ReadOnly = True
  834.             ScrollBars = ssBoth
  835.             TabOrder = 5
  836.           end
  837.           object bRebuild: TButton
  838.             Left = 452
  839.             Top = 212
  840.             Width = 121
  841.             Height = 25
  842.             Hint = 'Rebuild the body source'
  843.             Anchors = [akRight, akBottom]
  844.             Caption = 'Rebuild body'
  845.             ParentShowHint = False
  846.             ShowHint = True
  847.             TabOrder = 8
  848.             OnClick = bRebuildClick
  849.           end
  850.           object bReset: TButton
  851.             Left = 452
  852.             Top = 240
  853.             Width = 121
  854.             Height = 25
  855.             Anchors = [akRight, akBottom]
  856.             Caption = 'Reset message'
  857.             TabOrder = 9
  858.             OnClick = bResetClick
  859.           end
  860.           object bRefresh: TButton
  861.             Left = 452
  862.             Top = 268
  863.             Width = 121
  864.             Height = 25
  865.             Anchors = [akRight, akBottom]
  866.             Caption = 'Refresh screen'
  867.             TabOrder = 10
  868.             OnClick = bRefreshClick
  869.           end
  870.           object bSaveMsg: TButton
  871.             Left = 452
  872.             Top = 296
  873.             Width = 121
  874.             Height = 25
  875.             Anchors = [akRight, akBottom]
  876.             Caption = 'Save to file'
  877.             TabOrder = 11
  878.             OnClick = bSaveMsgClick
  879.           end
  880.           object bLoadMsg: TButton
  881.             Left = 452
  882.             Top = 324
  883.             Width = 121
  884.             Height = 25
  885.             Anchors = [akRight, akBottom]
  886.             Caption = 'Load from file'
  887.             TabOrder = 12
  888.             OnClick = bLoadMsgClick
  889.           end
  890.           object bNormalize: TButton
  891.             Left = 452
  892.             Top = 184
  893.             Width = 121
  894.             Height = 25
  895.             Hint = 'Reformat message in Mail2000 format'
  896.             Anchors = [akLeft, akTop, akRight, akBottom]
  897.             Caption = 'Normalize'
  898.             Font.Charset = DEFAULT_CHARSET
  899.             Font.Color = clBlack
  900.             Font.Height = -11
  901.             Font.Name = 'MS Sans Serif'
  902.             Font.Style = []
  903.             ParentFont = False
  904.             ParentShowHint = False
  905.             ShowHint = True
  906.             TabOrder = 7
  907.             OnClick = bNormalizeClick
  908.           end
  909.           object bFindParts: TButton
  910.             Left = 452
  911.             Top = 156
  912.             Width = 121
  913.             Height = 25
  914.             Hint = 'Identify texts and attachments'
  915.             Anchors = [akLeft, akTop, akRight, akBottom]
  916.             Caption = 'Find Parts'
  917.             Font.Charset = DEFAULT_CHARSET
  918.             Font.Color = clBlack
  919.             Font.Height = -11
  920.             Font.Name = 'MS Sans Serif'
  921.             Font.Style = []
  922.             ParentFont = False
  923.             ParentShowHint = False
  924.             ShowHint = True
  925.             TabOrder = 6
  926.             OnClick = bFindPartsClick
  927.           end
  928.         end
  929.         object TabSheet7: TTabSheet
  930.           Caption = 'Hops'
  931.           ImageIndex = 3
  932.           object mHops: TMemo
  933.             Left = 0
  934.             Top = 0
  935.             Width = 602
  936.             Height = 373
  937.             Align = alClient
  938.             Font.Charset = ANSI_CHARSET
  939.             Font.Color = clWindowText
  940.             Font.Height = -11
  941.             Font.Name = 'Courier New'
  942.             Font.Style = []
  943.             ParentFont = False
  944.             ReadOnly = True
  945.             ScrollBars = ssBoth
  946.             TabOrder = 0
  947.           end
  948.         end
  949.       end
  950.     end
  951.     object TabSheet3: TTabSheet
  952.       Caption = 'SMTP'
  953.       ImageIndex = 2
  954.       object Label23: TLabel
  955.         Left = 20
  956.         Top = 24
  957.         Width = 121
  958.         Height = 13
  959.         AutoSize = False
  960.         Caption = 'Host'
  961.         FocusControl = eSmtpHost
  962.       end
  963.       object Label24: TLabel
  964.         Left = 300
  965.         Top = 24
  966.         Width = 121
  967.         Height = 13
  968.         AutoSize = False
  969.         Caption = 'Last response'
  970.       end
  971.       object Label27: TLabel
  972.         Left = 152
  973.         Top = 24
  974.         Width = 50
  975.         Height = 13
  976.         AutoSize = False
  977.         Caption = 'Port'
  978.         FocusControl = eSmtpPort
  979.       end
  980.       object lSmtpStatus: TLabel
  981.         Left = 20
  982.         Top = 312
  983.         Width = 157
  984.         Height = 13
  985.         Alignment = taCenter
  986.         AutoSize = False
  987.         Caption = 'Disconnected'
  988.       end
  989.       object eSmtpHost: TEdit
  990.         Left = 20
  991.         Top = 40
  992.         Width = 121
  993.         Height = 21
  994.         TabOrder = 0
  995.       end
  996.       object bSmtpConnect: TButton
  997.         Left = 20
  998.         Top = 84
  999.         Width = 81
  1000.         Height = 25
  1001.         Caption = 'Connect'
  1002.         TabOrder = 2
  1003.         OnClick = bSmtpConnectClick
  1004.       end
  1005.       object bSmtpDisconnect: TButton
  1006.         Left = 20
  1007.         Top = 148
  1008.         Width = 81
  1009.         Height = 25
  1010.         Caption = 'Disconnect'
  1011.         Enabled = False
  1012.         TabOrder = 4
  1013.         OnClick = bSmtpDisconnectClick
  1014.       end
  1015.       object bSend: TButton
  1016.         Left = 20
  1017.         Top = 116
  1018.         Width = 81
  1019.         Height = 25
  1020.         Caption = 'Send'
  1021.         Enabled = False
  1022.         TabOrder = 3
  1023.         OnClick = bSendClick
  1024.       end
  1025.       object ProgressBar3: TProgressBar
  1026.         Left = 20
  1027.         Top = 330
  1028.         Width = 150
  1029.         Height = 16
  1030.         Anchors = [akLeft, akBottom]
  1031.         Min = 0
  1032.         Max = 100
  1033.         TabOrder = 5
  1034.       end
  1035.       object eSmtpPort: TEdit
  1036.         Left = 152
  1037.         Top = 40
  1038.         Width = 50
  1039.         Height = 21
  1040.         TabOrder = 1
  1041.         Text = '25'
  1042.       end
  1043.       object mSmtpResponse: TMemo
  1044.         Left = 300
  1045.         Top = 40
  1046.         Width = 281
  1047.         Height = 325
  1048.         Font.Charset = ANSI_CHARSET
  1049.         Font.Color = clWindowText
  1050.         Font.Height = -11
  1051.         Font.Name = 'Courier New'
  1052.         Font.Style = []
  1053.         ParentFont = False
  1054.         ReadOnly = True
  1055.         ScrollBars = ssBoth
  1056.         TabOrder = 6
  1057.       end
  1058.       object bSmtpAbort: TButton
  1059.         Left = 20
  1060.         Top = 180
  1061.         Width = 81
  1062.         Height = 25
  1063.         Caption = 'Abort'
  1064.         TabOrder = 7
  1065.         OnClick = bSmtpAbortClick
  1066.       end
  1067.     end
  1068.   end
  1069.   object OpenDialog: TOpenDialog
  1070.     DefaultExt = 'eml'
  1071.     Filter = 'All files (*.*)|*.*|Mail (*.eml)|*.eml'
  1072.     Left = 480
  1073.   end
  1074.   object POP: TPOP2000
  1075.     Port = 8110
  1076.     MailMessage = Msg
  1077.     TimeOut = 60
  1078.     OnProgress = POPProgress
  1079.     DeleteOnRetrieve = False
  1080.     Left = 516
  1081.   end
  1082.   object SMTP: TSMTP2000
  1083.     Port = 25
  1084.     TimeOut = 60
  1085.     MailMessage = Msg
  1086.     PacketSize = 102400
  1087.     OnProgress = SMTPProgress
  1088.     Left = 548
  1089.   end
  1090.   object SaveDialog: TSaveDialog
  1091.     DefaultExt = 'eml'
  1092.     Filter = 'All files (*.*)|*.*|Mail (*.eml)|*.eml'
  1093.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofShareAware, ofEnableSizing]
  1094.     Left = 448
  1095.   end
  1096.   object Msg: TMailMessage2000
  1097.     Charset = 'iso-8859-1'
  1098.     TextEncoding = etQuotedPrintable
  1099.     OnProgress = MsgProgress
  1100.     Left = 580
  1101.   end
  1102. end
  1103.