home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / FILEMENU / MAIN.dfm / MAIN.txt
Text File  |  1998-02-12  |  2KB  |  81 lines

  1. object MainForm: TMainForm
  2.   Left = 199
  3.   Top = 99
  4.   Width = 319
  5.   Height = 179
  6.   Caption = 'Dynamic File Menu'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Menu = MainMenu1
  13.   PixelsPerInch = 96
  14.   TextHeight = 16
  15.   object OpenButton: TButton
  16.     Left = 72
  17.     Top = 24
  18.     Width = 185
  19.     Height = 33
  20.     Caption = 'Add filename to Menu'
  21.     TabOrder = 0
  22.     OnClick = OpenButtonClick
  23.   end
  24.   object BitBtn1: TBitBtn
  25.     Left = 120
  26.     Top = 80
  27.     Width = 89
  28.     Height = 33
  29.     TabOrder = 1
  30.     Kind = bkClose
  31.   end
  32.   object MainMenu1: TMainMenu
  33.     Left = 24
  34.     Top = 16
  35.     object FileMenu: TMenuItem
  36.       Caption = '&File'
  37.       object FileOpen: TMenuItem
  38.         Caption = '&Open'
  39.         OnClick = OpenButtonClick
  40.       end
  41.       object FileSep1: TMenuItem
  42.         Caption = '-'
  43.       end
  44.       object FileExit: TMenuItem
  45.         Caption = 'E&xit'
  46.         ShortCut = 32856
  47.         OnClick = FileExitClick
  48.       end
  49.       object FileSep2: TMenuItem
  50.         Caption = '-'
  51.         Visible = False
  52.       end
  53.       object FileName1: TMenuItem
  54.         Caption = '&1 name'
  55.         Visible = False
  56.         OnClick = FileName1Click
  57.       end
  58.       object FileName2: TMenuItem
  59.         Caption = '&2 name'
  60.         Visible = False
  61.         OnClick = FileName1Click
  62.       end
  63.       object FileName3: TMenuItem
  64.         Caption = '&3 name'
  65.         Visible = False
  66.         OnClick = FileName1Click
  67.       end
  68.       object FileName4: TMenuItem
  69.         Caption = '&4 name'
  70.         Visible = False
  71.         OnClick = FileName1Click
  72.       end
  73.     end
  74.   end
  75.   object OpenDialog: TOpenDialog
  76.     Filter = 'All fies (*.*)|*.*'
  77.     Left = 24
  78.     Top = 72
  79.   end
  80. end
  81.