home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / TABEDIT / MAIN.dfm / MAIN.txt < prev   
Text File  |  1998-05-14  |  4KB  |  182 lines

  1. object MainForm: TMainForm
  2.   Left = 330
  3.   Top = 183
  4.   Width = 397
  5.   Height = 360
  6.   Caption = 'Tabbed Text Editor'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -16
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   Icon.Data = {<image000.ico>}
  14.   Menu = MainMenu1
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   OnCloseQuery = FormCloseQuery
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 120
  21.   TextHeight = 20
  22.   object Memo1: TMemo
  23.     Left = 0
  24.     Top = 0
  25.     Width = 389
  26.     Height = 285
  27.     Align = alClient
  28.     Color = clNavy
  29.     Font.Charset = DEFAULT_CHARSET
  30.     Font.Color = clYellow
  31.     Font.Height = -15
  32.     Font.Name = 'Courier New'
  33.     Font.Style = []
  34.     ParentFont = False
  35.     ScrollBars = ssBoth
  36.     TabOrder = 1
  37.     OnChange = Memo1Change
  38.   end
  39.   object TabSet1: TTabSet
  40.     Left = 0
  41.     Top = 285
  42.     Width = 389
  43.     Height = 26
  44.     Align = alBottom
  45.     Font.Charset = DEFAULT_CHARSET
  46.     Font.Color = clWindowText
  47.     Font.Height = -15
  48.     Font.Name = 'MS Sans Serif'
  49.     Font.Style = []
  50.     Tabs.Strings = (
  51.       '[untitled]')
  52.     TabIndex = 0
  53.     OnClick = TabSet1Click
  54.     OnChange = TabSet1Change
  55.   end
  56.   object MainMenu1: TMainMenu
  57.     Left = 24
  58.     Top = 24
  59.     object FileMenu: TMenuItem
  60.       Caption = '&File'
  61.       OnClick = FileMenuClick
  62.       object FileNew: TMenuItem
  63.         Caption = '&New'
  64.         ShortCut = 16462
  65.         OnClick = FileNewClick
  66.       end
  67.       object FileOpen: TMenuItem
  68.         Caption = '&Open...'
  69.         ShortCut = 16463
  70.         OnClick = FileOpenClick
  71.       end
  72.       object FileClose: TMenuItem
  73.         Caption = '&Close'
  74.         OnClick = FileCloseClick
  75.       end
  76.       object N3: TMenuItem
  77.         Caption = '-'
  78.       end
  79.       object FileSave: TMenuItem
  80.         Caption = '&Save'
  81.         ShortCut = 16467
  82.         OnClick = FileSaveClick
  83.       end
  84.       object FileSaveAs: TMenuItem
  85.         Caption = 'Save &As...'
  86.         OnClick = FileSaveAsClick
  87.       end
  88.       object N2: TMenuItem
  89.         Caption = '-'
  90.       end
  91.       object FilePrint: TMenuItem
  92.         Caption = '&Print'
  93.         ShortCut = 16464
  94.       end
  95.       object FilePrintSetup: TMenuItem
  96.         Caption = 'Prin&t Setup...'
  97.       end
  98.       object N1: TMenuItem
  99.         Caption = '-'
  100.       end
  101.       object FileExit: TMenuItem
  102.         Caption = 'E&xit'
  103.         OnClick = FileExitClick
  104.       end
  105.     end
  106.     object EditMenu: TMenuItem
  107.       Caption = '&Edit'
  108.       OnClick = EditMenuClick
  109.       object EditCut: TMenuItem
  110.         Caption = 'Cu&t'
  111.         ShortCut = 16472
  112.         OnClick = EditCutClick
  113.       end
  114.       object EditCopy: TMenuItem
  115.         Caption = '&Copy'
  116.         ShortCut = 16451
  117.         OnClick = EditCopyClick
  118.       end
  119.       object EditPaste: TMenuItem
  120.         Caption = '&Paste'
  121.         ShortCut = 16470
  122.         OnClick = EditPasteClick
  123.       end
  124.     end
  125.     object OptionsMenu: TMenuItem
  126.       Caption = '&Options'
  127.       object OptionsFont: TMenuItem
  128.         Caption = '&Font...'
  129.         OnClick = OptionsFontClick
  130.       end
  131.       object OptionsBackground: TMenuItem
  132.         Caption = '&Background...'
  133.         OnClick = OptionsBackgroundClick
  134.       end
  135.     end
  136.     object HelpMenu: TMenuItem
  137.       Caption = '&Help'
  138.       object HelpAbout: TMenuItem
  139.         Caption = '&About...'
  140.         OnClick = HelpAboutClick
  141.       end
  142.     end
  143.   end
  144.   object FileOpenDialog: TOpenDialog
  145.     Filter = 
  146.       'All files (*.*)|*.*|Text files (*.txt)|*.txt|Pascal files (*.pas' +
  147.       ')|*.pas'
  148.     Options = [ofPathMustExist, ofFileMustExist]
  149.     Left = 48
  150.     Top = 96
  151.   end
  152.   object FileSaveDialog: TSaveDialog
  153.     Filter = 
  154.       'All files (*.*)|*.*|Text files (*.txt)|*.txt|Pascal files (*.pas' +
  155.       ')|*.pas'
  156.     Options = [ofOverwritePrompt, ofPathMustExist]
  157.     Left = 144
  158.     Top = 96
  159.   end
  160.   object FontDialog1: TFontDialog
  161.     Font.Charset = DEFAULT_CHARSET
  162.     Font.Color = clWindowText
  163.     Font.Height = -13
  164.     Font.Name = 'System'
  165.     Font.Style = []
  166.     Device = fdPrinter
  167.     MinFontSize = 0
  168.     MaxFontSize = 0
  169.     Left = 104
  170.     Top = 24
  171.   end
  172.   object ColorDialog1: TColorDialog
  173.     Ctl3D = True
  174.     Left = 184
  175.     Top = 24
  176.   end
  177.   object FindDialog: TFindDialog
  178.     Left = 264
  179.     Top = 24
  180.   end
  181. end
  182.