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

  1. object MsgDlg: TMsgDlg
  2.   Left = 558
  3.   Top = 111
  4.   BorderStyle = bsDialog
  5.   Caption = 'Message To Send'
  6.   ClientHeight = 300
  7.   ClientWidth = 387
  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 Bevel1: TBevel
  16.     Left = 0
  17.     Top = 0
  18.     Width = 387
  19.     Height = 258
  20.     Align = alTop
  21.     Style = bsRaised
  22.   end
  23.   object Label1: TLabel
  24.     Left = 9
  25.     Top = 10
  26.     Width = 39
  27.     Height = 16
  28.     Caption = 'Subject:'
  29.   end
  30.   object OKBtn: TButton
  31.     Left = 227
  32.     Top = 269
  33.     Width = 75
  34.     Height = 25
  35.     Caption = 'OK'
  36.     Default = True
  37.     ModalResult = 1
  38.     TabOrder = 0
  39.   end
  40.   object CancelBtn: TButton
  41.     Left = 307
  42.     Top = 269
  43.     Width = 75
  44.     Height = 25
  45.     Cancel = True
  46.     Caption = 'Cancel'
  47.     ModalResult = 2
  48.     TabOrder = 1
  49.   end
  50.   object txtSubject: TEdit
  51.     Left = 55
  52.     Top = 5
  53.     Width = 326
  54.     Height = 21
  55.     TabOrder = 2
  56.   end
  57.   object txtText: TMemo
  58.     Left = 6
  59.     Top = 30
  60.     Width = 375
  61.     Height = 196
  62.     Lines.Strings = (
  63.       '')
  64.     ScrollBars = ssBoth
  65.     TabOrder = 3
  66.     WordWrap = False
  67.   end
  68.   object Button1: TButton
  69.     Left = 13
  70.     Top = 231
  71.     Width = 75
  72.     Height = 21
  73.     Caption = '&Open...'
  74.     TabOrder = 4
  75.     OnClick = Button1Click
  76.   end
  77.   object Button2: TButton
  78.     Left = 96
  79.     Top = 231
  80.     Width = 81
  81.     Height = 21
  82.     Caption = '&Save As...'
  83.     TabOrder = 5
  84.     OnClick = Button2Click
  85.   end
  86.   object openText: TOpenDialog
  87.     FileEditStyle = fsEdit
  88.     Filter = 'All files (*.*)|*.*|Text files (*.txt)|*.txt'
  89.     InitialDir = '.'
  90.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  91.     Title = 'Select text file...'
  92.     Left = 41
  93.     Top = 198
  94.   end
  95.   object dlgSave: TSaveDialog
  96.     DefaultExt = 'txt'
  97.     FileEditStyle = fsEdit
  98.     Filter = 'Text files (*.txt)|*.txt|All files (*.*)|*.*'
  99.     InitialDir = '.'
  100.     Options = [ofOverwritePrompt, ofHideReadOnly]
  101.     Title = 'Save as text file...'
  102.     Left = 122
  103.     Top = 196
  104.   end
  105. end
  106.