home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 February / PCWorld_1999-02_cd.bin / temacd / RegView / Regview.exe / 0 / RCDATA / THEXFORM / THEXFORM.txt
Encoding:
Text File  |  1998-09-18  |  2.1 KB  |  107 lines

  1. object hexForm: ThexForm
  2.   Left = 302
  3.   Top = 226
  4.   Width = 428
  5.   Height = 366
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'Edit Binary Value'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 304
  20.     Width = 420
  21.     Height = 35
  22.     Align = alBottom
  23.     BevelOuter = bvNone
  24.     TabOrder = 0
  25.     object Button1: TBitBtn
  26.       Left = 252
  27.       Top = 6
  28.       Width = 77
  29.       Height = 23
  30.       Caption = 'OK'
  31.       ModalResult = 1
  32.       ParentShowHint = False
  33.       ShowHint = False
  34.       TabOrder = 0
  35.       OnClick = Button1Click
  36.       NumGlyphs = 2
  37.     end
  38.     object Button2: TBitBtn
  39.       Left = 340
  40.       Top = 6
  41.       Width = 77
  42.       Height = 23
  43.       Caption = 'Cancel'
  44.       ModalResult = 2
  45.       ParentShowHint = False
  46.       ShowHint = False
  47.       TabOrder = 1
  48.       NumGlyphs = 2
  49.     end
  50.   end
  51.   object Panel2: TPanel
  52.     Left = 0
  53.     Top = 0
  54.     Width = 420
  55.     Height = 65
  56.     Align = alTop
  57.     BevelOuter = bvNone
  58.     TabOrder = 1
  59.     object Label1: TLabel
  60.       Left = 8
  61.       Top = 8
  62.       Width = 61
  63.       Height = 13
  64.       Caption = 'Value Name:'
  65.     end
  66.     object Label2: TLabel
  67.       Left = 8
  68.       Top = 52
  69.       Width = 56
  70.       Height = 13
  71.       Caption = 'Value Data:'
  72.     end
  73.     object ValueName: TEdit
  74.       Left = 8
  75.       Top = 24
  76.       Width = 345
  77.       Height = 21
  78.       Color = clBtnFace
  79.       ReadOnly = True
  80.       TabOrder = 0
  81.       Text = 'ValueName'
  82.     end
  83.   end
  84.   object HexEdit: TSRichEdit
  85.     Left = 0
  86.     Top = 65
  87.     Width = 420
  88.     Height = 239
  89.     Align = alClient
  90.     Font.Charset = DEFAULT_CHARSET
  91.     Font.Color = clBlack
  92.     Font.Height = -11
  93.     Font.Name = 'MS Sans Serif'
  94.     Font.Style = []
  95.     Lines.Strings = (
  96.       'HexEdit')
  97.     ParentFont = False
  98.     PlainText = True
  99.     ReadOnly = True
  100.     ScrollBars = ssVertical
  101.     TabOrder = 2
  102.     OnEnter = HexEditEnter
  103.     OnMouseDown = HexEditMouseDown
  104.     OnSelectionChange = HexEditSelectionChange
  105.   end
  106. end
  107.