home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Delphi.5 / Samples / sourceD5 / browutil.exe / BROWSER / HTMLEDIT.DFM / HTMLEDIT.txt next >
Encoding:
Text File  |  2000-01-02  |  2.3 KB  |  112 lines

  1. object FrmHTMLEdit: TFrmHTMLEdit
  2.   Left = 185
  3.   Top = 177
  4.   Width = 457
  5.   Height = 280
  6.   Caption = 'Editor'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   FormStyle = fsMDIChild
  14.   Icon.Data = {<image000.ico>}
  15.   OldCreateOrder = True
  16.   PopupMenu = PopupMenu1
  17.   Position = poDefault
  18.   Visible = True
  19.   OnActivate = FormActivate
  20.   OnClose = FormClose
  21.   OnDestroy = FormDestroy
  22.   OnResize = FormResize
  23.   OnShow = FormResize
  24.   PixelsPerInch = 96
  25.   TextHeight = 13
  26.   object Panel1: TPanel
  27.     Left = 0
  28.     Top = 28
  29.     Width = 449
  30.     Height = 21
  31.     Align = alTop
  32.     BevelOuter = bvNone
  33.     TabOrder = 1
  34.     object ComboBox1: TComboBox
  35.       Left = 0
  36.       Top = 0
  37.       Width = 449
  38.       Height = 21
  39.       ItemHeight = 13
  40.       TabOrder = 0
  41.       OnKeyDown = ComboBox1KeyDown
  42.     end
  43.   end
  44.   object ToolBar1: TToolBar
  45.     Left = 0
  46.     Top = 0
  47.     Width = 449
  48.     Height = 28
  49.     AutoSize = True
  50.     Caption = 'ToolBar1'
  51.     DockSite = True
  52.     EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
  53.     EdgeOuter = esRaised
  54.     TabOrder = 0
  55.     object SpeedButton1: TSpeedButton
  56.       Left = 0
  57.       Top = 2
  58.       Width = 23
  59.       Height = 22
  60.       Caption = '>>'
  61.       Flat = True
  62.       OnClick = SpeedButton1Click
  63.     end
  64.     object SpeedButton2: TSpeedButton
  65.       Left = 23
  66.       Top = 2
  67.       Width = 23
  68.       Height = 22
  69.       Caption = '<<'
  70.       Flat = True
  71.       OnClick = SpeedButton2Click
  72.     end
  73.     object SpeedButton3: TSpeedButton
  74.       Left = 46
  75.       Top = 2
  76.       Width = 23
  77.       Height = 22
  78.       Caption = '>'
  79.       Flat = True
  80.       OnClick = SpeedButton3Click
  81.     end
  82.     object SpeedButton4: TSpeedButton
  83.       Left = 69
  84.       Top = 2
  85.       Width = 23
  86.       Height = 22
  87.       Caption = '<'
  88.       Flat = True
  89.       OnClick = SpeedButton4Click
  90.     end
  91.   end
  92.   object PopupMenu1: TPopupMenu
  93.     Left = 192
  94.     Top = 48
  95.     object Print1: TMenuItem
  96.       Caption = 'Print'
  97.       OnClick = Print1Click
  98.     end
  99.     object ViewSource1: TMenuItem
  100.       Caption = 'View Source'
  101.       OnClick = ViewSource1Click
  102.     end
  103.   end
  104.   object SaveDialog1: TSaveDialog
  105.     DefaultExt = 'TXT'
  106.     Filter = 'Text Doctument (*.txt)|*.txt|All Files (*.*)|*.*'
  107.     Title = 'Save As File'
  108.     Left = 336
  109.     Top = 96
  110.   end
  111. end
  112.