home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 B / CHIP_HITWARE6_B.iso / biuro / BaseCalculator / Sources / Value.dfm / Value.txt < prev   
Text File  |  1996-11-06  |  3KB  |  158 lines

  1. object ValueWin: TValueWin
  2.   Left = 200
  3.   Top = 108
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Base Calculator Value'
  7.   ClientHeight = 166
  8.   ClientWidth = 345
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Icon.Data = {<image000.ico>}
  14.   Position = poScreenCenter
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel: TPanel
  18.     Left = 8
  19.     Top = 8
  20.     Width = 329
  21.     Height = 113
  22.     BevelInner = bvRaised
  23.     BevelOuter = bvLowered
  24.     TabOrder = 1
  25.     object SDecLabel: TLabel
  26.       Left = 16
  27.       Top = 16
  28.       Width = 97
  29.       Height = 13
  30.       AutoSize = False
  31.       Caption = '&Decimal (signed):'
  32.       FocusControl = SDecEdit
  33.       Transparent = True
  34.     end
  35.     object HexLabel: TLabel
  36.       Left = 16
  37.       Top = 48
  38.       Width = 97
  39.       Height = 13
  40.       AutoSize = False
  41.       Caption = '&Hexadecimal:'
  42.       FocusControl = HexEdit
  43.       Transparent = True
  44.     end
  45.     object BinLabel: TLabel
  46.       Left = 16
  47.       Top = 64
  48.       Width = 97
  49.       Height = 13
  50.       AutoSize = False
  51.       Caption = '&Binary:'
  52.       FocusControl = BinEdit
  53.       Transparent = True
  54.     end
  55.     object UDecLabel: TLabel
  56.       Left = 16
  57.       Top = 32
  58.       Width = 97
  59.       Height = 13
  60.       AutoSize = False
  61.       Caption = 'Decimal (&unsigned):'
  62.       FocusControl = UDecEdit
  63.       Transparent = True
  64.     end
  65.     object OctLabel: TLabel
  66.       Left = 16
  67.       Top = 80
  68.       Width = 97
  69.       Height = 13
  70.       AutoSize = False
  71.       Caption = '&Octal:'
  72.       FocusControl = OctEdit
  73.       Transparent = True
  74.     end
  75.     object SDecEdit: TEdit
  76.       Left = 120
  77.       Top = 16
  78.       Width = 201
  79.       Height = 13
  80.       TabStop = False
  81.       AutoSelect = False
  82.       AutoSize = False
  83.       BorderStyle = bsNone
  84.       ParentColor = True
  85.       ReadOnly = True
  86.       TabOrder = 0
  87.       Text = '00000000000'
  88.     end
  89.     object UDecEdit: TEdit
  90.       Left = 120
  91.       Top = 32
  92.       Width = 201
  93.       Height = 13
  94.       TabStop = False
  95.       AutoSelect = False
  96.       AutoSize = False
  97.       BorderStyle = bsNone
  98.       ParentColor = True
  99.       ReadOnly = True
  100.       TabOrder = 1
  101.       Text = '00000000000'
  102.     end
  103.     object HexEdit: TEdit
  104.       Left = 120
  105.       Top = 48
  106.       Width = 201
  107.       Height = 13
  108.       TabStop = False
  109.       AutoSelect = False
  110.       AutoSize = False
  111.       BorderStyle = bsNone
  112.       ParentColor = True
  113.       ReadOnly = True
  114.       TabOrder = 2
  115.       Text = '00000000'
  116.     end
  117.     object BinEdit: TEdit
  118.       Left = 120
  119.       Top = 64
  120.       Width = 201
  121.       Height = 13
  122.       TabStop = False
  123.       AutoSelect = False
  124.       AutoSize = False
  125.       BorderStyle = bsNone
  126.       ParentColor = True
  127.       ReadOnly = True
  128.       TabOrder = 3
  129.       Text = '00000000000000000000000000000000'
  130.     end
  131.     object OctEdit: TEdit
  132.       Left = 120
  133.       Top = 80
  134.       Width = 201
  135.       Height = 13
  136.       TabStop = False
  137.       AutoSelect = False
  138.       AutoSize = False
  139.       BorderStyle = bsNone
  140.       ParentColor = True
  141.       ReadOnly = True
  142.       TabOrder = 4
  143.       Text = '0000000000'
  144.     end
  145.   end
  146.   object OKButton: TButton
  147.     Left = 135
  148.     Top = 132
  149.     Width = 75
  150.     Height = 25
  151.     Cancel = True
  152.     Caption = 'OK'
  153.     Default = True
  154.     ModalResult = 2
  155.     TabOrder = 0
  156.   end
  157. end
  158.