home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 December / WIN95_DEC_1996_4.ISO / pim / krnlstnt.exe / ULTIMATE.EXE / 0 / RCDATA / TEDITFORM / TEDITFORM.txt
Text File  |  1996-12-15  |  2KB  |  99 lines

  1. object EditForm: TEditForm
  2.   Left = 1
  3.   Top = 89
  4.   Width = 639
  5.   Height = 300
  6.   Caption = 'Editor'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   OnClose = FormClose
  13.   OnShow = FormShow
  14.   PixelsPerInch = 96
  15.   TextHeight = 16
  16.   object EditBox: TMemo
  17.     Left = 46
  18.     Top = 152
  19.     Width = 185
  20.     Height = 89
  21.     HelpContext = 685
  22.     ScrollBars = ssBoth
  23.     TabOrder = 0
  24.     WordWrap = False
  25.     OnKeyDown = EditBoxKeyDown
  26.   end
  27.   object OKbtn: TButton
  28.     Left = 556
  29.     Top = 4
  30.     Width = 69
  31.     Height = 27
  32.     Caption = 'OK'
  33.     TabOrder = 1
  34.     OnClick = OKbtnClick
  35.   end
  36.   object CancelBtn: TButton
  37.     Left = 484
  38.     Top = 4
  39.     Width = 67
  40.     Height = 27
  41.     Cancel = True
  42.     Caption = 'Cancel'
  43.     TabOrder = 2
  44.     OnClick = OKbtnClick
  45.   end
  46.   object SaveDialog1: TSaveDialog
  47.     FileEditStyle = fsEdit
  48.     Options = [ofHideReadOnly, ofNoChangeDir, ofCreatePrompt]
  49.     Left = 48
  50.     Top = 8
  51.   end
  52.   object MainMenu1: TMainMenu
  53.     Left = 78
  54.     Top = 10
  55.     object EditorFile: TMenuItem
  56.       Caption = '&File'
  57.       ShortCut = 0
  58.       object FileSave: TMenuItem
  59.         Caption = '&Save'
  60.         ShortCut = 0
  61.         OnClick = OKbtnClick
  62.       end
  63.       object FileExit: TMenuItem
  64.         Caption = 'E&xit'
  65.         ShortCut = 0
  66.         OnClick = OKbtnClick
  67.       end
  68.     end
  69.     object EditorEdit: TMenuItem
  70.       Caption = '&Edit'
  71.       ShortCut = 0
  72.       object EditCut: TMenuItem
  73.         Caption = 'Cu&t'
  74.         ShortCut = 0
  75.         OnClick = EditCutClick
  76.       end
  77.       object EditCopy: TMenuItem
  78.         Caption = '&Copy'
  79.         ShortCut = 0
  80.         OnClick = EditCopyClick
  81.       end
  82.       object EditPaste: TMenuItem
  83.         Caption = '&Paste'
  84.         ShortCut = 0
  85.         OnClick = EditPasteClick
  86.       end
  87.     end
  88.     object EditorHelp: TMenuItem
  89.       Caption = '&Help'
  90.       HelpContext = 680
  91.       ShortCut = 0
  92.       OnClick = EditorHelpClick
  93.       object Editor: TMenuItem
  94.         ShortCut = 0
  95.       end
  96.     end
  97.   end
  98. end
  99.