home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 April / Chip_2002-04_cd1.bin / zkuste / delphi / kolekce / d3456 / PBEDIT.ZIP / PBEditPackDemo_unit.dfm < prev    next >
Text File  |  2002-01-19  |  5KB  |  257 lines

  1. object PBEditPackDemoForm: TPBEditPackDemoForm
  2.   Left = 200
  3.   Top = 108
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'PBEditpack demo'
  7.   ClientHeight = 334
  8.   ClientWidth = 392
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -13
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = True
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 16
  19.   object Label1: TLabel
  20.     Left = 68
  21.     Top = 5
  22.     Width = 258
  23.     Height = 16
  24.     Caption = 'Try to set focus with <Tab> and with mouse !'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 57
  28.     Top = 165
  29.     Width = 83
  30.     Height = 16
  31.     Caption = 'PBNumEdit:'
  32.     Font.Charset = DEFAULT_CHARSET
  33.     Font.Color = clWindowText
  34.     Font.Height = -13
  35.     Font.Name = 'MS Sans Serif'
  36.     Font.Style = [fsBold, fsUnderline]
  37.     ParentFont = False
  38.   end
  39.   object Label3: TLabel
  40.     Left = 146
  41.     Top = 63
  42.     Width = 101
  43.     Height = 16
  44.     Caption = 'PBBinHexEdit:'
  45.     Font.Charset = DEFAULT_CHARSET
  46.     Font.Color = clWindowText
  47.     Font.Height = -13
  48.     Font.Name = 'MS Sans Serif'
  49.     Font.Style = [fsBold, fsUnderline]
  50.     ParentFont = False
  51.   end
  52.   object Bevel2: TBevel
  53.     Left = 0
  54.     Top = 154
  55.     Width = 392
  56.     Height = 2
  57.     Shape = bsBottomLine
  58.   end
  59.   object Bevel3: TBevel
  60.     Left = 0
  61.     Top = 49
  62.     Width = 392
  63.     Height = 9
  64.     Shape = bsBottomLine
  65.   end
  66.   object Bevel1: TBevel
  67.     Left = 0
  68.     Top = 248
  69.     Width = 392
  70.     Height = 9
  71.     Shape = bsBottomLine
  72.   end
  73.   object Label4: TLabel
  74.     Left = 57
  75.     Top = 194
  76.     Width = 97
  77.     Height = 16
  78.     Caption = 'PBSuperSpin:'
  79.     Font.Charset = DEFAULT_CHARSET
  80.     Font.Color = clWindowText
  81.     Font.Height = -13
  82.     Font.Name = 'MS Sans Serif'
  83.     Font.Style = [fsBold, fsUnderline]
  84.     ParentFont = False
  85.   end
  86.   object Label5: TLabel
  87.     Left = 267
  88.     Top = 227
  89.     Width = 60
  90.     Height = 16
  91.     Caption = 'Decimals:'
  92.   end
  93.   object PBNumEdit1: TPBNumEdit
  94.     Left = 163
  95.     Top = 161
  96.     Width = 173
  97.     Height = 24
  98.     Alignment = taRightJustify
  99.     Decimals = -1
  100.     NumberFormat = Thousands
  101.     TabOrder = 0
  102.     Value = -123456789.012
  103.   end
  104.   object PBBinHexEdit1: TPBBinHexEdit
  105.     Left = 69
  106.     Top = 88
  107.     Width = 253
  108.     Height = 24
  109.     Alignment = taCenter
  110.     AsBin = '11100000111000001110000011100000'
  111.     AsInteger = -522133280
  112.     AsHex = '$E0E0E0E0'
  113.     BaseFormat = HexaDecimal
  114.     MaxValue = 0
  115.     MinValue = 0
  116.     TabOrder = 1
  117.     Version = '6.00.00.00'
  118.   end
  119.   object Button1: TButton
  120.     Left = 130
  121.     Top = 26
  122.     Width = 134
  123.     Height = 22
  124.     Caption = 'Toggle Alignment (all)'
  125.     Default = True
  126.     TabOrder = 4
  127.     OnClick = Button1Click
  128.   end
  129.   object Button2: TButton
  130.     Left = 127
  131.     Top = 121
  132.     Width = 138
  133.     Height = 22
  134.     Caption = 'Toggle BaseFormat'
  135.     TabOrder = 5
  136.     OnClick = Button2Click
  137.   end
  138.   object Button3: TButton
  139.     Left = 17
  140.     Top = 224
  141.     Width = 145
  142.     Height = 22
  143.     Caption = 'Toggle NumberFormat'
  144.     TabOrder = 6
  145.     OnClick = Button3Click
  146.   end
  147.   object CheckBox1: TCheckBox
  148.     Left = 17
  149.     Top = 28
  150.     Width = 99
  151.     Height = 17
  152.     Alignment = taLeftJustify
  153.     Caption = 'Default button:'
  154.     Checked = True
  155.     State = cbChecked
  156.     TabOrder = 7
  157.     OnClick = CheckBox1Click
  158.   end
  159.   object PBMaskEdit1: TPBMaskEdit
  160.     Left = 151
  161.     Top = 267
  162.     Width = 90
  163.     Height = 24
  164.     TabOrder = 2
  165.     Text = 'PBMaskEdit1'
  166.     Alignment = taLeftJustify
  167.   end
  168.   object PBSpinEdit1: TPBSpinEdit
  169.     Left = 285
  170.     Top = 266
  171.     Width = 90
  172.     Height = 26
  173.     Cursor = crDefault
  174.     MaxLength = 2
  175.     MaxValue = 57
  176.     MinValue = 53
  177.     TabOrder = 3
  178.     Value = 55
  179.     Alignment = taRightJustify
  180.   end
  181.   object CheckBox2: TCheckBox
  182.     Left = 272
  183.     Top = 28
  184.     Width = 114
  185.     Height = 17
  186.     Caption = 'AutoSelect (all)'
  187.     Checked = True
  188.     State = cbChecked
  189.     TabOrder = 8
  190.     OnClick = CheckBox2Click
  191.   end
  192.   object PBEdit1: TPBEdit
  193.     Left = 16
  194.     Top = 267
  195.     Width = 90
  196.     Height = 24
  197.     TabOrder = 9
  198.     Text = 'PBEdit1'
  199.     Alignment = taLeftJustify
  200.   end
  201.   object PBSuperSpin1: TPBSuperSpin
  202.     Left = 163
  203.     Top = 188
  204.     Width = 173
  205.     Height = 26
  206.     Cursor = crDefault
  207.     Alignment = taRightJustify
  208.     Ctl3D = True
  209.     Decimals = -1
  210.     MaxValue = 10000
  211.     MinValue = -1
  212.     NumberFormat = Thousands
  213.     ParentCtl3D = False
  214.     TabOrder = 10
  215.     Value = 0.5
  216.     Increment = 1.5
  217.     RoundValues = True
  218.     Wrap = True
  219.   end
  220.   object DecimalEdit: TPBSuperSpin
  221.     Left = 334
  222.     Top = 223
  223.     Width = 49
  224.     Height = 26
  225.     Cursor = crDefault
  226.     Alignment = taRightJustify
  227.     Decimals = 0
  228.     MaxValue = 14
  229.     MinValue = -1
  230.     NumberFormat = Standard
  231.     OnChange = SetDecimalsClick
  232.     TabOrder = 12
  233.     Value = -1
  234.     Increment = 1
  235.     RoundValues = False
  236.     Wrap = True
  237.   end
  238.   object CancelButton: TButton
  239.     Left = 158
  240.     Top = 301
  241.     Width = 75
  242.     Height = 25
  243.     Cancel = True
  244.     Caption = 'Cancel'
  245.     TabOrder = 11
  246.     OnClick = CancelButtonClick
  247.   end
  248.   object Edit1: TEdit
  249.     Left = 19
  250.     Top = 306
  251.     Width = 121
  252.     Height = 24
  253.     TabOrder = 13
  254.     Text = 'Edit1'
  255.   end
  256. end
  257.