home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / MAINFRM.DFM / MAINFRM.txt
Text File  |  1996-05-08  |  2KB  |  82 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 108
  4.   Width = 385
  5.   Height = 235
  6.   Caption = 'Memo Editor'
  7.   Color = clAppWorkSpace
  8.   Font.Color = clBlack
  9.   Font.Height = -15
  10.   Font.Name = 'ソスlソスr ソスoソスSソスVソスbソスN'
  11.   Font.Style = []
  12.   Font.Charset = 128
  13.   FormStyle = fsMDIForm
  14.   Menu = MainMenu
  15.   Position = poDefault
  16.   WindowMenu = WindowMenu
  17.   PixelsPerInch = 120
  18.   TextHeight = 15
  19.   object MainMenu: TMainMenu
  20.     Left = 8
  21.     Top = 152
  22.     object FileMenu: TMenuItem
  23.       Caption = '&File'
  24.       ShortCut = 0
  25.       object FileNewItem: TMenuItem
  26.         Caption = '&New'
  27.         ShortCut = 0
  28.         OnClick = FileNewItemClick
  29.       end
  30.       object FileOpenItem: TMenuItem
  31.         Caption = '&Open...'
  32.         ShortCut = 0
  33.         OnClick = FileOpenItemClick
  34.       end
  35.       object N1: TMenuItem
  36.         Caption = '-'
  37.         ShortCut = 0
  38.       end
  39.       object FileExitItem: TMenuItem
  40.         Caption = '&Exit'
  41.         ShortCut = 0
  42.         OnClick = FileExitItemClick
  43.       end
  44.     end
  45.     object WindowMenu: TMenuItem
  46.       Caption = '&Window'
  47.       GroupIndex = 1
  48.       ShortCut = 0
  49.       object WindowTileItem: TMenuItem
  50.         Caption = '&Tile'
  51.         ShortCut = 0
  52.         OnClick = WindowTileItemClick
  53.       end
  54.       object WindowCascadeItem: TMenuItem
  55.         Caption = '&Cascade'
  56.         ShortCut = 0
  57.         OnClick = WindowCascadeItemClick
  58.       end
  59.       object WindowArrangeIconsItem: TMenuItem
  60.         Caption = '&Arrange Icons'
  61.         ShortCut = 0
  62.         OnClick = WindowArrangeIconsItemClick
  63.       end
  64.     end
  65.   end
  66.   object OpenDialog: TOpenDialog
  67.     DefaultExt = 'txt'
  68.     FileEditStyle = fsEdit
  69.     Filter = 'Text file (*.txt)|*.txt|Any file (*.*)|*.*'
  70.     Options = [ofHideReadOnly]
  71.     Left = 40
  72.     Top = 152
  73.   end
  74.   object SaveDialog: TSaveDialog
  75.     FileEditStyle = fsEdit
  76.     Filter = 'Text file (*.txt)|*.txt|Any file (*.*)|*.*'
  77.     Options = [ofHideReadOnly]
  78.     Left = 72
  79.     Top = 152
  80.   end
  81. end
  82.