home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / 9UTI / K_SYNCH.ZIP / K-SYNCH.EXE / 0 / RCDATA / TSMTPTESTFORM / TSMTPTESTFORM.txt
Text File  |  1998-04-28  |  4KB  |  189 lines

  1. object SmtpTestForm: TSmtpTestForm
  2.   Left = 187
  3.   Top = 188
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'K-Synch - Send Mail'
  7.   ClientHeight = 260
  8.   ClientWidth = 466
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object MsgMemo: TMemo
  20.     Left = 0
  21.     Top = 109
  22.     Width = 466
  23.     Height = 121
  24.     Align = alTop
  25.     ScrollBars = ssBoth
  26.     TabOrder = 0
  27.   end
  28.   object DisplayMemo: TMemo
  29.     Left = 0
  30.     Top = 237
  31.     Width = 466
  32.     Height = 23
  33.     Align = alClient
  34.     Lines.Strings = (
  35.       'DisplayMemo')
  36.     ReadOnly = True
  37.     ScrollBars = ssBoth
  38.     TabOrder = 1
  39.     Visible = False
  40.   end
  41.   object Panel1: TPanel
  42.     Left = 0
  43.     Top = 0
  44.     Width = 466
  45.     Height = 109
  46.     Align = alTop
  47.     TabOrder = 2
  48.     object Label1: TLabel
  49.       Left = 16
  50.       Top = 12
  51.       Width = 55
  52.       Height = 13
  53.       Caption = 'SMTP Host'
  54.     end
  55.     object Label2: TLabel
  56.       Left = 48
  57.       Top = 35
  58.       Width = 23
  59.       Height = 13
  60.       Caption = 'From'
  61.     end
  62.     object Subject: TLabel
  63.       Left = 35
  64.       Top = 62
  65.       Width = 36
  66.       Height = 13
  67.       Caption = 'Subject'
  68.     end
  69.     object Label5: TLabel
  70.       Left = 4
  71.       Top = 92
  72.       Width = 66
  73.       Height = 13
  74.       Caption = 'Message text:'
  75.     end
  76.     object Wait1: TWait
  77.       Left = 336
  78.       Top = 10
  79.       Width = 109
  80.       Height = 21
  81.       Caption = '60'
  82.       ModalResult = 0
  83.       Interval = 1000
  84.       IsControl = True
  85.     end
  86.     object HostEdit: TEdit
  87.       Left = 80
  88.       Top = 10
  89.       Width = 239
  90.       Height = 21
  91.       Hint = 'Your SMTP Account Name'
  92.       ParentShowHint = False
  93.       ShowHint = True
  94.       TabOrder = 1
  95.       Text = 'SMTP.youraccount.com'
  96.     end
  97.     object FromEdit: TEdit
  98.       Left = 80
  99.       Top = 35
  100.       Width = 239
  101.       Height = 21
  102.       Hint = 'Your Name'
  103.       ParentShowHint = False
  104.       ShowHint = True
  105.       TabOrder = 2
  106.       Text = 'you@yourisp.com'
  107.     end
  108.     object MailButton: TButton
  109.       Left = 336
  110.       Top = 36
  111.       Width = 109
  112.       Height = 25
  113.       Hint = 'Send EMail'
  114.       Caption = 'Send &Mail'
  115.       ParentShowHint = False
  116.       ShowHint = True
  117.       TabOrder = 3
  118.       OnClick = MailButtonClick
  119.     end
  120.     object SubjectEdit: TEdit
  121.       Left = 80
  122.       Top = 60
  123.       Width = 239
  124.       Height = 21
  125.       Hint = 'Subject'
  126.       ParentShowHint = False
  127.       ShowHint = True
  128.       TabOrder = 4
  129.       Text = 'K-Synch Feedback'
  130.     end
  131.     object SendData: TCheckBox95
  132.       Left = 174
  133.       Top = 87
  134.       Width = 115
  135.       Height = 19
  136.       Hint = 'Send Pgm Data (Useful With Bug Reports)'
  137.       Caption = 'Send Program Data'
  138.       Font.Charset = DEFAULT_CHARSET
  139.       Font.Color = clWindowText
  140.       Font.Height = -11
  141.       Font.Name = 'MS Sans Serif'
  142.       Font.Style = []
  143.       ParentFont = False
  144.       ParentShowHint = False
  145.       ShowHint = True
  146.       State = cbChecked
  147.       TabOrder = 5
  148.       WordWrap = True
  149.     end
  150.     object Button1: TButton
  151.       Left = 336
  152.       Top = 66
  153.       Width = 109
  154.       Height = 19
  155.       Caption = '&Cancel'
  156.       TabOrder = 6
  157.       OnClick = Button1Click
  158.     end
  159.   end
  160.   object Panel3: TPanel
  161.     Left = 0
  162.     Top = 230
  163.     Width = 466
  164.     Height = 7
  165.     Align = alTop
  166.     TabOrder = 3
  167.     Visible = False
  168.     object Label7: TLabel
  169.       Left = 16
  170.       Top = 2
  171.       Width = 71
  172.       Height = 13
  173.       Caption = 'Info messages:'
  174.     end
  175.   end
  176.   object SmtpClient: TSmtpClient
  177.     Tag = 0
  178.     Port = 'smtp'
  179.     Wait = Wait1
  180.     CharSet = 'iso-8859-1'
  181.     TimeOut = 15
  182.     OnDisplay = SmtpClientDisplay
  183.     OnGetData = SmtpClientGetData
  184.     OnHeaderLine = SmtpClientHeaderLine
  185.     Left = 52
  186.     Top = 226
  187.   end
  188. end
  189.