home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / BITVIEW / MAIN.dfm / MAIN.txt
Text File  |  1998-04-13  |  881b  |  45 lines

  1. object MainForm: TMainForm
  2.   Left = 276
  3.   Top = 361
  4.   Width = 434
  5.   Height = 309
  6.   Caption = 'Bitmap Viewer'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Menu = MainMenu1
  13.   WindowState = wsMaximized
  14.   PixelsPerInch = 96
  15.   TextHeight = 16
  16.   object BitImage: TImage
  17.     Left = 0
  18.     Top = 0
  19.     Width = 426
  20.     Height = 263
  21.     Align = alClient
  22.     Stretch = True
  23.   end
  24.   object MainMenu1: TMainMenu
  25.     Left = 248
  26.     Top = 16
  27.     object File1: TMenuItem
  28.       Caption = '&File'
  29.       object Open1: TMenuItem
  30.         Caption = '&Open'
  31.         OnClick = Open1Click
  32.       end
  33.       object Exit1: TMenuItem
  34.         Caption = 'E&xit'
  35.         OnClick = Exit1Click
  36.       end
  37.     end
  38.   end
  39.   object OpenDialog1: TOpenDialog
  40.     Filter = 'Bitmap files|*.bmp|All files|*.*'
  41.     Left = 328
  42.     Top = 16
  43.   end
  44. end
  45.