home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 A / CHIP_HITWARE6_A.iso / internet / DragnMail / DRAGMAIL.EXE / 0 / RCDATA / TADDRESSDLG / TADDRESSDLG.txt
Encoding:
Text File  |  1997-07-13  |  1.5 KB  |  78 lines

  1. object AddressDlg: TAddressDlg
  2.   Left = 240
  3.   Top = 99
  4.   BorderStyle = bsDialog
  5.   Caption = 'Email Dialog'
  6.   ClientHeight = 89
  7.   ClientWidth = 267
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object lblPrompt: TLabel
  16.     Left = 6
  17.     Top = 7
  18.     Width = 95
  19.     Height = 13
  20.     Caption = 'Enter email address:'
  21.   end
  22.   object txtEmail: TEdit
  23.     Left = 5
  24.     Top = 24
  25.     Width = 194
  26.     Height = 21
  27.     TabOrder = 0
  28.   end
  29.   object OKBtn: TButton
  30.     Left = 113
  31.     Top = 57
  32.     Width = 66
  33.     Height = 23
  34.     Caption = 'OK'
  35.     Default = True
  36.     ModalResult = 1
  37.     TabOrder = 1
  38.   end
  39.   object CancelBtn: TButton
  40.     Left = 187
  41.     Top = 58
  42.     Width = 63
  43.     Height = 21
  44.     Cancel = True
  45.     Caption = 'Cancel'
  46.     ModalResult = 2
  47.     TabOrder = 2
  48.   end
  49.   object btnBrowse: TButton
  50.     Left = 204
  51.     Top = 25
  52.     Width = 58
  53.     Height = 19
  54.     Caption = '&Browse...'
  55.     TabOrder = 3
  56.     OnClick = btnBrowseClick
  57.   end
  58.   object btnAddtolist: TButton
  59.     Left = 28
  60.     Top = 58
  61.     Width = 75
  62.     Height = 21
  63.     Caption = '&Add To List'
  64.     TabOrder = 4
  65.     Visible = False
  66.     OnClick = btnAddtolistClick
  67.   end
  68.   object openText: TOpenDialog
  69.     FileEditStyle = fsEdit
  70.     Filter = 'All files (*.*)|*.*|Text files (*.txt)|*.txt'
  71.     InitialDir = '.'
  72.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  73.     Title = 'Select text list of email addresses...'
  74.     Left = 22
  75.     Top = 32
  76.   end
  77. end
  78.