home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / MEMOPAD / MAIN.dfm / MAIN.txt
Text File  |  1998-02-09  |  1KB  |  73 lines

  1. object MainForm: TMainForm
  2.   Left = 275
  3.   Top = 136
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Memo Pad'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Menu = MainMenu1
  13.   PopupMenu = PopupMenu1
  14.   OnActivate = FormActivate
  15.   OnClose = FormClose
  16.   PixelsPerInch = 96
  17.   TextHeight = 16
  18.   object MemoLabel: TLabel
  19.     Left = 16
  20.     Top = 32
  21.     Width = 52
  22.     Height = 16
  23.     Caption = 'Memos:'
  24.   end
  25.   object Memo1: TMemo
  26.     Left = 16
  27.     Top = 56
  28.     Width = 393
  29.     Height = 169
  30.     TabOrder = 0
  31.   end
  32.   object MainMenu1: TMainMenu
  33.     Left = 304
  34.     object File1: TMenuItem
  35.       Caption = '&File'
  36.       object Save1: TMenuItem
  37.         Caption = '&Save'
  38.         ShortCut = 113
  39.         OnClick = Save1Click
  40.       end
  41.       object Exit1: TMenuItem
  42.         Caption = 'E&xit'
  43.         OnClick = Exit1Click
  44.       end
  45.     end
  46.     object Help1: TMenuItem
  47.       Caption = '&Help'
  48.       object About1: TMenuItem
  49.         Caption = '&About'
  50.         ShortCut = 112
  51.         OnClick = About1Click
  52.       end
  53.     end
  54.   end
  55.   object PopupMenu1: TPopupMenu
  56.     Left = 376
  57.     object About2: TMenuItem
  58.       Caption = '&About'
  59.       ShortCut = 112
  60.       OnClick = About1Click
  61.     end
  62.     object Save2: TMenuItem
  63.       Caption = '&Save'
  64.       ShortCut = 113
  65.       OnClick = Save1Click
  66.     end
  67.     object Exit2: TMenuItem
  68.       Caption = 'E&xit'
  69.       OnClick = Exit1Click
  70.     end
  71.   end
  72. end
  73.