home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 028A / NPPLUS.ZIP / Notepad.exe / 0 / RCDATA / TSENDFORM / TSENDFORM.txt
Text File  |  1996-10-31  |  1KB  |  73 lines

  1. object SendForm: TSendForm
  2.   Left = 254
  3.   Top = 148
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Send file through electronic mail'
  7.   ClientHeight = 272
  8.   ClientWidth = 336
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   KeyPreview = True
  14.   OnCreate = FormCreate
  15.   OnKeyDown = FormKeyDown
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object GroupBox1: TGroupBox
  19.     Left = 8
  20.     Top = 4
  21.     Width = 320
  22.     Height = 260
  23.     Caption = ' E-mail send options '
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 14
  27.       Top = 26
  28.       Width = 292
  29.       Height = 169
  30.       AutoSize = False
  31.       WordWrap = True
  32.     end
  33.     object bnSend: TButton
  34.       Left = 236
  35.       Top = 198
  36.       Width = 71
  37.       Height = 23
  38.       Caption = '&Send'
  39.       TabOrder = 0
  40.       OnClick = bnSendClick
  41.     end
  42.     object bnCancel: TButton
  43.       Left = 236
  44.       Top = 225
  45.       Width = 71
  46.       Height = 23
  47.       Caption = '&Cancel'
  48.       TabOrder = 1
  49.       OnClick = bnCancelClick
  50.     end
  51.     object bnAttachment: TRadioButton
  52.       Left = 25
  53.       Top = 204
  54.       Width = 161
  55.       Height = 13
  56.       Caption = 'Send as &Attachment'
  57.       Checked = True
  58.       TabOrder = 2
  59.       TabStop = True
  60.       OnClick = bnAttachmentClick
  61.     end
  62.     object bnText: TRadioButton
  63.       Left = 25
  64.       Top = 225
  65.       Width = 151
  66.       Height = 13
  67.       Caption = 'Send as &Text'
  68.       TabOrder = 3
  69.       OnClick = bnTextClick
  70.     end
  71.   end
  72. end
  73.