home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / rzcomps.exe / DEMO / MAILFRM.DF_ / MAILFRM.DF / MAILFRM.txt < prev   
Text File  |  1996-10-18  |  3KB  |  164 lines

  1. object FrmMail: TFrmMail
  2.   Left = 211
  3.   Top = 104
  4.   BorderStyle = bsDialog
  5.   Caption = 'Sending Mail with RzSendMessage'
  6.   ClientHeight = 352
  7.   ClientWidth = 386
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Icon.Data = {<image000.ico>}
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 120
  19.     Width = 36
  20.     Height = 13
  21.     Caption = 'Subject'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 8
  25.     Top = 72
  26.     Width = 18
  27.     Height = 13
  28.     Caption = 'TO:'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 216
  32.     Top = 72
  33.     Width = 17
  34.     Height = 13
  35.     Caption = 'CC:'
  36.   end
  37.   object RzLabel1: TRzLabel
  38.     Left = 8
  39.     Top = 4
  40.     Width = 365
  41.     Height = 41
  42.     TextStyle = tsNormal
  43.     AutoSize = False
  44.     Caption = 
  45.       'This form demonstrates the RzSendMessage component.  Enter the e' +
  46.       'mail addresses for all receipients, enter a subject and a messag' +
  47.       'e, and select file attachments.  Press the Send button to send t' +
  48.       'he message.'
  49.     Font.Color = clNavy
  50.     Font.Height = -11
  51.     Font.Name = 'MS Sans Serif'
  52.     Font.Style = []
  53.     ParentFont = False
  54.     WordWrap = True
  55.   end
  56.   object RzLabel2: TRzLabel
  57.     Left = 8
  58.     Top = 48
  59.     Width = 359
  60.     Height = 13
  61.     TextStyle = tsNormal
  62.     Caption = 
  63.       'NOTE:  The RzSendMessage requires a MAPI compliant messaging sys' +
  64.       'tem.'
  65.     Font.Color = clNavy
  66.     Font.Height = -11
  67.     Font.Name = 'MS Sans Serif'
  68.     Font.Style = []
  69.     ParentFont = False
  70.   end
  71.   object GroupBox1: TGroupBox
  72.     Left = 8
  73.     Top = 228
  74.     Width = 369
  75.     Height = 85
  76.     Caption = 'Attached Files'
  77.     TabOrder = 4
  78.     object LstFiles: TListBox
  79.       Left = 8
  80.       Top = 20
  81.       Width = 269
  82.       Height = 57
  83.       ItemHeight = 13
  84.       TabOrder = 0
  85.     end
  86.     object BtnBrowse: TButton
  87.       Left = 284
  88.       Top = 20
  89.       Width = 75
  90.       Height = 25
  91.       Caption = '&Browse...'
  92.       TabOrder = 1
  93.       OnClick = BtnBrowseClick
  94.     end
  95.     object BtnRemove: TButton
  96.       Left = 284
  97.       Top = 52
  98.       Width = 75
  99.       Height = 25
  100.       Caption = 'Remove'
  101.       TabOrder = 2
  102.       OnClick = BtnRemoveClick
  103.     end
  104.   end
  105.   object EdtTO: TMemo
  106.     Left = 56
  107.     Top = 72
  108.     Width = 133
  109.     Height = 37
  110.     TabOrder = 0
  111.   end
  112.   object EdtCC: TMemo
  113.     Left = 240
  114.     Top = 72
  115.     Width = 137
  116.     Height = 37
  117.     TabOrder = 1
  118.   end
  119.   object EdtMessage: TMemo
  120.     Left = 8
  121.     Top = 144
  122.     Width = 369
  123.     Height = 77
  124.     TabOrder = 3
  125.   end
  126.   object EdtSubject: TEdit
  127.     Left = 56
  128.     Top = 116
  129.     Width = 321
  130.     Height = 21
  131.     TabOrder = 2
  132.   end
  133.   object BtnSend: TButton
  134.     Left = 218
  135.     Top = 320
  136.     Width = 75
  137.     Height = 25
  138.     Caption = '&Send'
  139.     TabOrder = 5
  140.     OnClick = BtnSendClick
  141.   end
  142.   object BtnDone: TButton
  143.     Left = 302
  144.     Top = 320
  145.     Width = 75
  146.     Height = 25
  147.     Caption = 'Done'
  148.     ModalResult = 1
  149.     TabOrder = 6
  150.   end
  151.   object Msg: TRzSendMessage
  152.     MessageMemo = EdtMessage
  153.     SubjectEdit = EdtSubject
  154.     Left = 8
  155.     Top = 316
  156.   end
  157.   object DlgOpen: TOpenDialog
  158.     Filter = 'All Files (*.*)|*.*'
  159.     Options = [ofPathMustExist, ofFileMustExist]
  160.     Left = 40
  161.     Top = 316
  162.   end
  163. end
  164.