home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / LISTTEXT / MAIN.dfm / MAIN.txt
Text File  |  1998-01-21  |  1KB  |  55 lines

  1. object MainForm: TMainForm
  2.   Left = 254
  3.   Top = 134
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'List Text Files'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Menu = MainMenu
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object MemoText: TMemo
  16.     Left = 0
  17.     Top = 0
  18.     Width = 427
  19.     Height = 254
  20.     Align = alClient
  21.     Font.Charset = DEFAULT_CHARSET
  22.     Font.Color = clBlack
  23.     Font.Height = -13
  24.     Font.Name = 'Courier New'
  25.     Font.Style = []
  26.     ParentFont = False
  27.     ReadOnly = True
  28.     ScrollBars = ssBoth
  29.     TabOrder = 0
  30.   end
  31.   object MainMenu: TMainMenu
  32.     Left = 8
  33.     Top = 8
  34.     object File1: TMenuItem
  35.       Caption = '&File'
  36.       object Open1: TMenuItem
  37.         Caption = '&Open'
  38.         ShortCut = 114
  39.         OnClick = Open1Click
  40.       end
  41.       object Exit1: TMenuItem
  42.         Caption = 'E&xit'
  43.         OnClick = Exit1Click
  44.       end
  45.     end
  46.   end
  47.   object OpenDialog: TOpenDialog
  48.     Filter = 
  49.       'Text files (*.txt)|*.txt|Pascal files (*.pas)|*.pas|C and C++ fi' +
  50.       'les (*.c??, *.h)|*.c??,*.h|All files (*.*)|*.*'
  51.     Left = 48
  52.     Top = 8
  53.   end
  54. end
  55.