home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / BITVIEW2 / MAIN.dfm / MAIN.txt
Text File  |  1998-04-04  |  983b  |  48 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 99
  4.   AutoScroll = False
  5.   Caption = 'Bitmap Viewer With Scroll Bars'
  6.   ClientHeight = 263
  7.   ClientWidth = 426
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   OnActivate = FormActivate
  15.   OnResize = FormResize
  16.   PixelsPerInch = 96
  17.   TextHeight = 16
  18.   object BitImage: TImage
  19.     Left = 0
  20.     Top = 0
  21.     Width = 426
  22.     Height = 263
  23.     Align = alClient
  24.     ParentShowHint = False
  25.     ShowHint = False
  26.   end
  27.   object MainMenu1: TMainMenu
  28.     Left = 288
  29.     Top = 16
  30.     object File1: TMenuItem
  31.       Caption = '&File'
  32.       object Open1: TMenuItem
  33.         Caption = '&Open'
  34.         OnClick = Open1Click
  35.       end
  36.       object Exit1: TMenuItem
  37.         Caption = 'E&xit'
  38.         OnClick = Exit1Click
  39.       end
  40.     end
  41.   end
  42.   object OpenDialog1: TOpenDialog
  43.     Filter = 'Bitmap files|*.bmp|All files|*.*'
  44.     Left = 360
  45.     Top = 16
  46.   end
  47. end
  48.