home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / delphi / kompon / d567 / MMAILER.ZIP / Unit1.dfm < prev    next >
Text File  |  2002-08-19  |  3KB  |  138 lines

  1. object Form1: TForm1
  2.   Left = 216
  3.   Top = 71
  4.   Width = 554
  5.   Height = 593
  6.   Caption = 'TmMailer demo'
  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.   Menu = MainMenu1
  14.   OldCreateOrder = False
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 24
  19.     Top = 8
  20.     Width = 26
  21.     Height = 13
  22.     Caption = 'From:'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 24
  26.     Top = 56
  27.     Width = 159
  28.     Height = 13
  29.     Caption = 'Recipients (semicolon separated):'
  30.   end
  31.   object Label6: TLabel
  32.     Left = 24
  33.     Top = 104
  34.     Width = 39
  35.     Height = 13
  36.     Caption = 'Subject:'
  37.   end
  38.   object Label7: TLabel
  39.     Left = 24
  40.     Top = 224
  41.     Width = 27
  42.     Height = 13
  43.     Caption = 'Body:'
  44.   end
  45.   object Label3: TLabel
  46.     Left = 24
  47.     Top = 152
  48.     Width = 63
  49.     Height = 13
  50.     Caption = 'Attachement:'
  51.   end
  52.   object Edit1: TEdit
  53.     Left = 24
  54.     Top = 24
  55.     Width = 257
  56.     Height = 21
  57.     TabOrder = 0
  58.   end
  59.   object Edit2: TEdit
  60.     Left = 24
  61.     Top = 72
  62.     Width = 505
  63.     Height = 21
  64.     TabOrder = 1
  65.   end
  66.   object Edit3: TEdit
  67.     Left = 24
  68.     Top = 120
  69.     Width = 505
  70.     Height = 21
  71.     TabOrder = 2
  72.   end
  73.   object Memo1: TMemo
  74.     Left = 24
  75.     Top = 240
  76.     Width = 505
  77.     Height = 249
  78.     TabOrder = 3
  79.   end
  80.   object Button1: TButton
  81.     Left = 24
  82.     Top = 504
  83.     Width = 75
  84.     Height = 25
  85.     Caption = 'Send'
  86.     TabOrder = 4
  87.     OnClick = Button1Click
  88.   end
  89.   object CheckBox1: TCheckBox
  90.     Left = 88
  91.     Top = 223
  92.     Width = 97
  93.     Height = 17
  94.     Caption = 'HTML'
  95.     TabOrder = 5
  96.   end
  97.   object ListBox1: TListBox
  98.     Left = 24
  99.     Top = 168
  100.     Width = 505
  101.     Height = 49
  102.     ItemHeight = 13
  103.     TabOrder = 6
  104.   end
  105.   object Button2: TButton
  106.     Left = 96
  107.     Top = 147
  108.     Width = 75
  109.     Height = 19
  110.     Caption = 'Add files'
  111.     TabOrder = 7
  112.     OnClick = Button2Click
  113.   end
  114.   object mMailer1: TmMailer
  115.     Recipients = <>
  116.     HTML = True
  117.     About = 'Version 1.0, 2002 '#174' Mats Asplund, http://go.to/masdp'
  118.     Left = 408
  119.     Top = 40
  120.   end
  121.   object MainMenu1: TMainMenu
  122.     Left = 328
  123.     Top = 32
  124.     object Setup1: TMenuItem
  125.       Caption = 'Setup'
  126.       OnClick = Setup1Click
  127.     end
  128.   end
  129.   object OpenDialog1: TOpenDialog
  130.     FileName = '*.*'
  131.     Filter = 'All files|*.*'
  132.     Options = [ofHideReadOnly, ofAllowMultiSelect, ofEnableSizing]
  133.     Title = 'Add file'
  134.     Left = 368
  135.     Top = 24
  136.   end
  137. end
  138.