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

  1. object EditForm: TEditForm
  2.   Left = 213
  3.   Top = 168
  4.   Width = 500
  5.   Height = 276
  6.   ActiveControl = RichEdit
  7.   Caption = 'Untitled'
  8.   Font.Color = clBlack
  9.   Font.Height = -13
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   FormStyle = fsMDIChild
  13.   Icon.Data = {<image000.ico>}
  14.   Position = poDefault
  15.   Scaled = False
  16.   Visible = True
  17.   OnActivate = FormActivate
  18.   OnClose = FormClose
  19.   OnCloseQuery = FormCloseQuery
  20.   OnCreate = FormCreate
  21.   OnResize = FormResize
  22.   PixelsPerInch = 96
  23.   TextHeight = 16
  24.   object RichEdit: TRichEdit
  25.     Left = 0
  26.     Top = 0
  27.     Width = 492
  28.     Height = 249
  29.     Align = alClient
  30.     BorderStyle = bsNone
  31.     Color = clWhite
  32.     Ctl3D = True
  33.     Font.Color = clBlack
  34.     Font.Height = -12
  35.     Font.Name = 'Courier New'
  36.     Font.Style = []
  37.     HideSelection = False
  38.     HideScrollBars = False
  39.     MaxLength = 200000000
  40.     ParentCtl3D = False
  41.     ParentFont = False
  42.     PlainText = True
  43.     PopupMenu = PopupMenu
  44.     ScrollBars = ssVertical
  45.     TabOrder = 0
  46.     WantTabs = True
  47.     OnChange = RichEditChange
  48.     OnKeyDown = RichEditKeyDown
  49.     OnKeyUp = RichEditKeyUp
  50.     OnMouseDown = RichEditMouseDown
  51.     OnSelectionChange = RichEditSelectionChange
  52.     OnProtectChange = RichEditProtectChange
  53.   end
  54.   object PopupMenu: TPopupMenu
  55.     Left = 22
  56.     Top = 12
  57.     object Undo2: TMenuItem
  58.       Caption = '&Undo'
  59.       Enabled = False
  60.       Hint = 'Reverses last change made to text'
  61.       ShortCut = 0
  62.       OnClick = Undo2Click
  63.     end
  64.     object MenuItem1: TMenuItem
  65.       Caption = '-'
  66.       ShortCut = 0
  67.     end
  68.     object Cut2: TMenuItem
  69.       Caption = 'Cu&t'
  70.       Enabled = False
  71.       Hint = 'Cuts selection to Clipboard'
  72.       ShortCut = 0
  73.       OnClick = Cut2Click
  74.     end
  75.     object Copy2: TMenuItem
  76.       Caption = '&Copy'
  77.       Enabled = False
  78.       Hint = 'Copies selection to Clipboard'
  79.       ShortCut = 0
  80.       OnClick = Copy2Click
  81.     end
  82.     object Paste2: TMenuItem
  83.       Caption = '&Paste'
  84.       Hint = 'Inserts Clipboard contents'
  85.       ShortCut = 0
  86.       OnClick = Paste2Click
  87.     end
  88.     object Delete2: TMenuItem
  89.       Caption = '&Delete'
  90.       Hint = 'Erases selection'
  91.       ShortCut = 0
  92.       OnClick = Delete2Click
  93.     end
  94.     object MenuItem2: TMenuItem
  95.       Caption = '-'
  96.       ShortCut = 0
  97.     end
  98.     object SelectAll2: TMenuItem
  99.       Caption = 'Select &All'
  100.       Enabled = False
  101.       Hint = 'Selects entire file'
  102.       ShortCut = 0
  103.       OnClick = SelectAll2Click
  104.     end
  105.   end
  106. end
  107.