home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / Mdidemo2 / main.dfm / main.txt
Text File  |  1998-03-12  |  2KB  |  99 lines

  1. object MainForm: TMainForm
  2.   Left = 261
  3.   Top = 155
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'MDI Demonstration'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   FormStyle = fsMDIForm
  13.   Menu = MainMenu1
  14.   WindowMenu = WindowMenu
  15.   PixelsPerInch = 96
  16.   TextHeight = 16
  17.   object MainMenu1: TMainMenu
  18.     Left = 40
  19.     Top = 8
  20.     object FileMenu: TMenuItem
  21.       Caption = '&File'
  22.       OnClick = FileMenuClick
  23.       object FileNew: TMenuItem
  24.         Caption = '&New'
  25.         OnClick = FileNewClick
  26.       end
  27.       object FileOpen: TMenuItem
  28.         Caption = '&Open...'
  29.         OnClick = FileOpenClick
  30.       end
  31.       object FileClose: TMenuItem
  32.         Caption = '&Close'
  33.         OnClick = FileCloseClick
  34.       end
  35.       object N3: TMenuItem
  36.         Caption = '-'
  37.       end
  38.       object FileSave: TMenuItem
  39.         Caption = '&Save'
  40.         OnClick = FileSaveClick
  41.       end
  42.       object FileSaveAs: TMenuItem
  43.         Caption = '&Save as...'
  44.         OnClick = FileSaveAsClick
  45.       end
  46.       object N1: TMenuItem
  47.         Caption = '-'
  48.       end
  49.       object FileExit: TMenuItem
  50.         Caption = 'E&xit'
  51.         OnClick = FileExitClick
  52.       end
  53.     end
  54.     object WindowMenu: TMenuItem
  55.       Caption = '&Window'
  56.       OnClick = WindowMenuClick
  57.       object WindowCascade: TMenuItem
  58.         Caption = '&Cascade'
  59.         OnClick = WindowCascadeClick
  60.       end
  61.       object WindowTile: TMenuItem
  62.         Caption = '&Tile'
  63.         OnClick = WindowTileClick
  64.       end
  65.       object WindowArrangeIcons: TMenuItem
  66.         Caption = '&Arrange icons'
  67.         OnClick = WindowArrangeIconsClick
  68.       end
  69.       object WindowMinimizeAll: TMenuItem
  70.         Caption = '&Minimize all'
  71.         OnClick = WindowMinimizeAllClick
  72.       end
  73.       object N2: TMenuItem
  74.         Caption = '-'
  75.       end
  76.       object WindowCloseAll: TMenuItem
  77.         Caption = 'Close all'
  78.         OnClick = WindowCloseAllClick
  79.       end
  80.     end
  81.     object HelpMenu: TMenuItem
  82.       Caption = '&Help'
  83.       object HelpAbout: TMenuItem
  84.         Caption = '&About'
  85.         OnClick = HelpAboutClick
  86.       end
  87.     end
  88.   end
  89.   object OpenDialog: TOpenDialog
  90.     Filter = 'All files (*.*)|*.*'
  91.     Left = 112
  92.     Top = 8
  93.   end
  94.   object SaveDialog: TSaveDialog
  95.     Left = 192
  96.     Top = 8
  97.   end
  98. end
  99.