home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / CALC32 / CALC.dfm / CALC.txt next >
Text File  |  1998-04-23  |  9KB  |  481 lines

  1. object CalcForm: TCalcForm
  2.   Left = 198
  3.   Top = 100
  4.   Width = 424
  5.   Height = 360
  6.   Caption = 'Calculator 32'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Icon.Data = {<image000.ico>}
  13.   KeyPreview = True
  14.   Menu = CalcMainMenu
  15.   OnCreate = FormCreate
  16.   OnKeyPress = FormKeyPress
  17.   PixelsPerInch = 96
  18.   TextHeight = 16
  19.   object MemButton: TSpeedButton
  20.     Left = 8
  21.     Top = 8
  22.     Width = 25
  23.     Height = 25
  24.     Caption = 'M'
  25.     Enabled = False
  26.   end
  27.   object DecButton: TSpeedButton
  28.     Left = 8
  29.     Top = 40
  30.     Width = 25
  31.     Height = 25
  32.     GroupIndex = 1
  33.     Down = True
  34.     Caption = '&D'
  35.     OnClick = DecHexBinButtonClick
  36.   end
  37.   object HexButton: TSpeedButton
  38.     Left = 8
  39.     Top = 72
  40.     Width = 25
  41.     Height = 25
  42.     GroupIndex = 1
  43.     Caption = '&H'
  44.     OnClick = DecHexBinButtonClick
  45.   end
  46.   object BinButton: TSpeedButton
  47.     Left = 8
  48.     Top = 104
  49.     Width = 25
  50.     Height = 25
  51.     GroupIndex = 1
  52.     Caption = '&B'
  53.     OnClick = DecHexBinButtonClick
  54.   end
  55.   object Button7: TSpeedButton
  56.     Tag = 7
  57.     Left = 184
  58.     Top = 144
  59.     Width = 25
  60.     Height = 25
  61.     AllowAllUp = True
  62.     Caption = '7'
  63.     OnClick = ButtonDigitClick
  64.   end
  65.   object Button8: TSpeedButton
  66.     Tag = 8
  67.     Left = 224
  68.     Top = 144
  69.     Width = 25
  70.     Height = 25
  71.     AllowAllUp = True
  72.     Caption = '8'
  73.     OnClick = ButtonDigitClick
  74.   end
  75.   object Button9: TSpeedButton
  76.     Tag = 9
  77.     Left = 264
  78.     Top = 144
  79.     Width = 25
  80.     Height = 25
  81.     AllowAllUp = True
  82.     Caption = '9'
  83.     OnClick = ButtonDigitClick
  84.   end
  85.   object Button4: TSpeedButton
  86.     Tag = 4
  87.     Left = 184
  88.     Top = 176
  89.     Width = 25
  90.     Height = 25
  91.     AllowAllUp = True
  92.     Caption = '4'
  93.     OnClick = ButtonDigitClick
  94.   end
  95.   object Button5: TSpeedButton
  96.     Tag = 5
  97.     Left = 224
  98.     Top = 176
  99.     Width = 25
  100.     Height = 25
  101.     AllowAllUp = True
  102.     Caption = '5'
  103.     OnClick = ButtonDigitClick
  104.   end
  105.   object Button6: TSpeedButton
  106.     Tag = 6
  107.     Left = 264
  108.     Top = 176
  109.     Width = 25
  110.     Height = 25
  111.     AllowAllUp = True
  112.     Caption = '6'
  113.     OnClick = ButtonDigitClick
  114.   end
  115.   object Button1: TSpeedButton
  116.     Tag = 1
  117.     Left = 184
  118.     Top = 208
  119.     Width = 25
  120.     Height = 25
  121.     AllowAllUp = True
  122.     Caption = '1'
  123.     OnClick = ButtonDigitClick
  124.   end
  125.   object Button2: TSpeedButton
  126.     Tag = 2
  127.     Left = 224
  128.     Top = 208
  129.     Width = 25
  130.     Height = 25
  131.     AllowAllUp = True
  132.     Caption = '2'
  133.     OnClick = ButtonDigitClick
  134.   end
  135.   object Button3: TSpeedButton
  136.     Tag = 3
  137.     Left = 264
  138.     Top = 208
  139.     Width = 25
  140.     Height = 25
  141.     AllowAllUp = True
  142.     Caption = '3'
  143.     OnClick = ButtonDigitClick
  144.   end
  145.   object Button0: TSpeedButton
  146.     Left = 184
  147.     Top = 240
  148.     Width = 25
  149.     Height = 25
  150.     AllowAllUp = True
  151.     Caption = '0'
  152.     OnClick = ButtonDigitClick
  153.   end
  154.   object PlusMinusButton: TSpeedButton
  155.     Left = 224
  156.     Top = 240
  157.     Width = 25
  158.     Height = 25
  159.     AllowAllUp = True
  160.     Caption = '+ -'
  161.     OnClick = PlusMinusButtonClick
  162.   end
  163.   object EqualButton: TSpeedButton
  164.     Left = 264
  165.     Top = 240
  166.     Width = 25
  167.     Height = 25
  168.     AllowAllUp = True
  169.     Caption = '='
  170.     OnClick = EqualButtonClick
  171.   end
  172.   object ButtonA: TSpeedButton
  173.     Tag = 10
  174.     Left = 184
  175.     Top = 272
  176.     Width = 25
  177.     Height = 25
  178.     AllowAllUp = True
  179.     Caption = 'A'
  180.     Enabled = False
  181.     OnClick = ButtonDigitClick
  182.   end
  183.   object ButtonB: TSpeedButton
  184.     Tag = 11
  185.     Left = 224
  186.     Top = 272
  187.     Width = 25
  188.     Height = 25
  189.     AllowAllUp = True
  190.     Caption = 'B'
  191.     Enabled = False
  192.     OnClick = ButtonDigitClick
  193.   end
  194.   object ButtonC: TSpeedButton
  195.     Tag = 12
  196.     Left = 264
  197.     Top = 272
  198.     Width = 25
  199.     Height = 25
  200.     AllowAllUp = True
  201.     Caption = 'C'
  202.     Enabled = False
  203.     OnClick = ButtonDigitClick
  204.   end
  205.   object ButtonD: TSpeedButton
  206.     Tag = 13
  207.     Left = 304
  208.     Top = 272
  209.     Width = 25
  210.     Height = 25
  211.     AllowAllUp = True
  212.     Caption = 'D'
  213.     Enabled = False
  214.     OnClick = ButtonDigitClick
  215.   end
  216.   object ButtonE: TSpeedButton
  217.     Tag = 14
  218.     Left = 344
  219.     Top = 272
  220.     Width = 25
  221.     Height = 25
  222.     AllowAllUp = True
  223.     Caption = 'E'
  224.     Enabled = False
  225.     OnClick = ButtonDigitClick
  226.   end
  227.   object ButtonF: TSpeedButton
  228.     Tag = 15
  229.     Left = 384
  230.     Top = 272
  231.     Width = 25
  232.     Height = 25
  233.     AllowAllUp = True
  234.     Caption = 'F'
  235.     Enabled = False
  236.     OnClick = ButtonDigitClick
  237.   end
  238.   object DivButton: TSpeedButton
  239.     Tag = -2
  240.     Left = 304
  241.     Top = 176
  242.     Width = 25
  243.     Height = 25
  244.     AllowAllUp = True
  245.     Caption = '/'
  246.     OnClick = OpButtonClick
  247.   end
  248.   object TimesButton: TSpeedButton
  249.     Tag = -1
  250.     Left = 304
  251.     Top = 144
  252.     Width = 25
  253.     Height = 25
  254.     AllowAllUp = True
  255.     Caption = '*'
  256.     OnClick = OpButtonClick
  257.   end
  258.   object MinusButton: TSpeedButton
  259.     Tag = -4
  260.     Left = 304
  261.     Top = 240
  262.     Width = 25
  263.     Height = 25
  264.     AllowAllUp = True
  265.     Caption = '-'
  266.     OnClick = OpButtonClick
  267.   end
  268.   object PlusButton: TSpeedButton
  269.     Tag = -3
  270.     Left = 304
  271.     Top = 208
  272.     Width = 25
  273.     Height = 25
  274.     AllowAllUp = True
  275.     Caption = '+'
  276.     OnClick = OpButtonClick
  277.   end
  278.   object ANDButton: TSpeedButton
  279.     Tag = -5
  280.     Left = 344
  281.     Top = 144
  282.     Width = 65
  283.     Height = 25
  284.     AllowAllUp = True
  285.     Caption = 'AND'
  286.     OnClick = OpButtonClick
  287.   end
  288.   object ORButton: TSpeedButton
  289.     Tag = -6
  290.     Left = 344
  291.     Top = 176
  292.     Width = 65
  293.     Height = 25
  294.     AllowAllUp = True
  295.     Caption = 'OR'
  296.     OnClick = OpButtonClick
  297.   end
  298.   object XORButton: TSpeedButton
  299.     Tag = -7
  300.     Left = 344
  301.     Top = 208
  302.     Width = 65
  303.     Height = 25
  304.     AllowAllUp = True
  305.     Caption = 'XOR'
  306.     OnClick = OpButtonClick
  307.   end
  308.   object NOTButton: TSpeedButton
  309.     Left = 344
  310.     Top = 240
  311.     Width = 65
  312.     Height = 25
  313.     AllowAllUp = True
  314.     Caption = 'NOT'
  315.     OnClick = NOTButtonClick
  316.   end
  317.   object MemBevel: TBevel
  318.     Left = 40
  319.     Top = 8
  320.     Width = 369
  321.     Height = 25
  322.   end
  323.   object MemLabel: TLabel
  324.     Left = 45
  325.     Top = 12
  326.     Width = 356
  327.     Height = 17
  328.     Alignment = taRightJustify
  329.     AutoSize = False
  330.     Caption = '0'
  331.     Color = clScrollBar
  332.     Font.Charset = DEFAULT_CHARSET
  333.     Font.Color = clBlack
  334.     Font.Height = -19
  335.     Font.Name = 'Courier New'
  336.     Font.Style = [fsBold]
  337.     ParentColor = False
  338.     ParentFont = False
  339.   end
  340.   object DecBevel: TBevel
  341.     Left = 40
  342.     Top = 40
  343.     Width = 369
  344.     Height = 25
  345.   end
  346.   object DecLabel: TLabel
  347.     Left = 45
  348.     Top = 44
  349.     Width = 356
  350.     Height = 17
  351.     Alignment = taRightJustify
  352.     AutoSize = False
  353.     Caption = '-2147483648'
  354.     Color = clScrollBar
  355.     Font.Charset = DEFAULT_CHARSET
  356.     Font.Color = clBlack
  357.     Font.Height = -19
  358.     Font.Name = 'Courier New'
  359.     Font.Style = [fsBold]
  360.     ParentColor = False
  361.     ParentFont = False
  362.   end
  363.   object HexBevel: TBevel
  364.     Left = 40
  365.     Top = 72
  366.     Width = 369
  367.     Height = 25
  368.   end
  369.   object HexLabel: TLabel
  370.     Left = 45
  371.     Top = 76
  372.     Width = 356
  373.     Height = 17
  374.     Alignment = taRightJustify
  375.     AutoSize = False
  376.     Caption = '7FFFFFFF'
  377.     Color = clScrollBar
  378.     Font.Charset = DEFAULT_CHARSET
  379.     Font.Color = clBlack
  380.     Font.Height = -19
  381.     Font.Name = 'Courier New'
  382.     Font.Style = [fsBold]
  383.     ParentColor = False
  384.     ParentFont = False
  385.   end
  386.   object BinBevel: TBevel
  387.     Left = 40
  388.     Top = 104
  389.     Width = 369
  390.     Height = 25
  391.   end
  392.   object BinLabel: TLabel
  393.     Left = 45
  394.     Top = 108
  395.     Width = 356
  396.     Height = 17
  397.     Alignment = taRightJustify
  398.     AutoSize = False
  399.     Caption = '10000000000000000000000000000000'
  400.     Color = clScrollBar
  401.     Font.Charset = DEFAULT_CHARSET
  402.     Font.Color = clBlack
  403.     Font.Height = -19
  404.     Font.Name = 'Courier New'
  405.     Font.Style = [fsBold]
  406.     ParentColor = False
  407.     ParentFont = False
  408.   end
  409.   object LineBevel: TBevel
  410.     Left = 8
  411.     Top = 128
  412.     Width = 401
  413.     Height = 9
  414.     Shape = bsBottomLine
  415.   end
  416.   object ClearButton: TSpeedButton
  417.     Left = 104
  418.     Top = 144
  419.     Width = 65
  420.     Height = 25
  421.     Caption = 'C'
  422.     OnClick = ClearButtonClick
  423.   end
  424.   object ClearEntryButton: TSpeedButton
  425.     Left = 104
  426.     Top = 176
  427.     Width = 65
  428.     Height = 25
  429.     Caption = '&CE'
  430.     OnClick = ClearEntryButtonClick
  431.   end
  432.   object BackButton: TSpeedButto