home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / SOFTWARE / VYZKUSTE / RKEDIT / RKEDIT.EXE / 0 / RCDATA / TFRMNUMBERSYSTEMSCONVERSIONS / TFRMNUMBERSYSTEMSCONVERSIONS.txt
Text File  |  2003-04-17  |  3KB  |  134 lines

  1. inherited frmNumberSystemsConversions: TfrmNumberSystemsConversions
  2.   Left = 373
  3.   Top = 557
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Number systems conversions'
  7.   ClientHeight = 243
  8.   ClientWidth = 358
  9.   Constraints.MinHeight = 270
  10.   Constraints.MinWidth = 233
  11.   Position = poOwnerFormCenter
  12.   OnActivate = FormActivate
  13.   DesignSize = (
  14.     358
  15.     243)
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object lblAscii: TLabel
  19.     Left = 16
  20.     Top = 157
  21.     Width = 30
  22.     Height = 13
  23.     Caption = '&ASCII:'
  24.     FocusControl = edtAscii
  25.   end
  26.   object lblBin: TLabel
  27.     Left = 16
  28.     Top = 125
  29.     Width = 21
  30.     Height = 13
  31.     Caption = '&BIN:'
  32.     FocusControl = edtBin
  33.   end
  34.   object lblOct: TLabel
  35.     Left = 16
  36.     Top = 93
  37.     Width = 25
  38.     Height = 13
  39.     Caption = '&OCT:'
  40.     FocusControl = edtOct
  41.   end
  42.   object lblDec: TLabel
  43.     Left = 16
  44.     Top = 61
  45.     Width = 25
  46.     Height = 13
  47.     Caption = '&DEC:'
  48.     FocusControl = edtDec
  49.   end
  50.   object lblHex: TLabel
  51.     Left = 16
  52.     Top = 29
  53.     Width = 25
  54.     Height = 13
  55.     Caption = '&HEX:'
  56.     FocusControl = edtHex
  57.   end
  58.   object lblResult: TLabel
  59.     Left = 16
  60.     Top = 186
  61.     Width = 40
  62.     Height = 13
  63.     Caption = 'lblResult'
  64.   end
  65.   object edtAscii: TEdit
  66.     Left = 52
  67.     Top = 152
  68.     Width = 33
  69.     Height = 21
  70.     MaxLength = 1
  71.     TabOrder = 4
  72.     OnChange = edtAsciiChange
  73.   end
  74.   object edtBin: TNumEdit
  75.     Left = 52
  76.     Top = 120
  77.     Width = 292
  78.     Height = 21
  79.     Anchors = [akLeft, akTop, akRight]
  80.     MaxLength = 45
  81.     TabOrder = 3
  82.     Text = '0'
  83.     OnChange = edtBinChange
  84.     EnableHexa = False
  85.   end
  86.   object edtOct: TNumEdit
  87.     Left = 52
  88.     Top = 88
  89.     Width = 292
  90.     Height = 21
  91.     Anchors = [akLeft, akTop, akRight]
  92.     MaxLength = 19
  93.     TabOrder = 2
  94.     Text = '0'
  95.     OnChange = edtOctChange
  96.     EnableHexa = False
  97.   end
  98.   object edtDec: TNumEdit
  99.     Left = 52
  100.     Top = 56
  101.     Width = 292
  102.     Height = 21
  103.     Anchors = [akLeft, akTop, akRight]
  104.     MaxLength = 16
  105.     TabOrder = 1
  106.     Text = '0'
  107.     OnChange = edtDecChange
  108.     EnableHexa = False
  109.   end
  110.   object edtHex: TNumEdit
  111.     Left = 52
  112.     Top = 24
  113.     Width = 292
  114.     Height = 21
  115.     Anchors = [akLeft, akTop, akRight]
  116.     CharCase = ecUpperCase
  117.     MaxLength = 14
  118.     TabOrder = 0
  119.     Text = '0'
  120.     OnChange = edtHexChange
  121.     EnableHexa = True
  122.   end
  123.   object btnOk: TButton
  124.     Left = 271
  125.     Top = 200
  126.     Width = 75
  127.     Height = 25
  128.     Cancel = True
  129.     Caption = 'OK'
  130.     ModalResult = 2
  131.     TabOrder = 5
  132.   end
  133. end
  134.