home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9APLI / TIMBNT25.ZIP / INSTALL.EXE / BILLPOWR.EXE / 0 / RCDATA / TCALCULATOR / TCALCULATOR.txt
Text File  |  1998-04-14  |  4KB  |  183 lines

  1. object Calculator: TCalculator
  2.   Left = 200
  3.   Top = 121
  4.   Width = 170
  5.   Height = 372
  6.   HelpContext = 295
  7.   BorderIcons = [biSystemMenu]
  8.   Caption = 'Calculator'
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Menu = MainMenu1
  15.   OnClose = FormClose
  16.   OnKeyDown = FormKeyDown
  17.   OnShow = FormShow
  18.   PixelsPerInch = 120
  19.   TextHeight = 16
  20.   object mem1Label: TLabel
  21.     Left = 4
  22.     Top = 30
  23.     Width = 37
  24.     Height = 16
  25.     Caption = 'Mem1'
  26.     OnClick = memLabelClick
  27.   end
  28.   object mem2Label: TLabel
  29.     Left = 2
  30.     Top = 54
  31.     Width = 37
  32.     Height = 16
  33.     Caption = 'Mem2'
  34.     OnClick = memLabelClick
  35.   end
  36.   object calcGrid: TStringGrid
  37.     Left = 0
  38.     Top = 74
  39.     Width = 159
  40.     Height = 239
  41.     HelpContext = 295
  42.     ColCount = 3
  43.     FixedCols = 0
  44.     RowCount = 500
  45.     FixedRows = 0
  46.     Font.Charset = DEFAULT_CHARSET
  47.     Font.Color = clWindowText
  48.     Font.Height = -13
  49.     Font.Name = 'Courier New'
  50.     Font.Pitch = fpFixed
  51.     Font.Style = []
  52.     GridLineWidth = 0
  53.     Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goEditing, goAlwaysShowEditor, goThumbTracking]
  54.     ParentFont = False
  55.     ScrollBars = ssVertical
  56.     TabOrder = 0
  57.     OnDragDrop = calcGridDragDrop
  58.     OnDragOver = calcGridDragOver
  59.     OnGetEditText = calcGridGetEditText
  60.     OnKeyDown = FormKeyDown
  61.     OnKeyPress = calcGridKeyPress
  62.     OnMouseDown = calcGridMouseDown
  63.   end
  64.   object CancelBtn: TButton
  65.     Left = 112
  66.     Top = 2
  67.     Width = 45
  68.     Height = 21
  69.     Cancel = True
  70.     Caption = 'Exit'
  71.     TabOrder = 1
  72.     TabStop = False
  73.     OnClick = CancelBtnClick
  74.   end
  75.   object mem1Btn: TEdit
  76.     Left = 44
  77.     Top = 26
  78.     Width = 97
  79.     Height = 24
  80.     TabStop = False
  81.     MaxLength = 13
  82.     TabOrder = 2
  83.     Text = '0.00000000000'
  84.     OnDragDrop = MemBtnDragDrop
  85.     OnDragOver = MemBtnDragOver
  86.     OnExit = memBtnExit
  87.     OnKeyDown = FormKeyDown
  88.     OnMouseDown = MemBtnMouseDown
  89.   end
  90.   object mem2Btn: TEdit
  91.     Left = 44
  92.     Top = 50
  93.     Width = 97
  94.     Height = 24
  95.     TabStop = False
  96.     MaxLength = 13
  97.     TabOrder = 3
  98.     OnDragDrop = MemBtnDragDrop
  99.     OnDragOver = MemBtnDragOver
  100.     OnExit = memBtnExit
  101.     OnKeyDown = FormKeyDown
  102.     OnMouseDown = MemBtnMouseDown
  103.   end
  104.   object MainMenu1: TMainMenu
  105.     Left = 30
  106.     Top = 65534
  107.     object calcFile: TMenuItem
  108.       Caption = 'File'
  109.       object calcPrint: TMenuItem
  110.         Caption = 'Print Tape'
  111.         OnClick = calcPrintClick
  112.       end
  113.       object calcToClipbrd: TMenuItem
  114.         Caption = 'Tape to Clipboard'
  115.         OnClick = calcPrintClick
  116.       end
  117.       object N3: TMenuItem
  118.         Caption = '-'
  119.       end
  120.       object calcTotExit: TMenuItem
  121.         Caption = 'Exit, Total in Clipboard'
  122.         OnClick = calcTotExitClick
  123.       end
  124.       object calcExit: TMenuItem
  125.         Caption = 'Exit'
  126.         OnClick = CancelBtnClick
  127.       end
  128.     end
  129.     object CalcTools: TMenuItem
  130.       Caption = 'Tools'
  131.       object Mem1in: TMenuItem
  132.         Caption = 'Mem1 IN'
  133.         OnClick = MemInClick
  134.       end
  135.       object Mem1Out: TMenuItem
  136.         Caption = 'Mem1 OUT'
  137.         OnClick = MemOutClick
  138.       end
  139.       object Mem2in: TMenuItem
  140.         Caption = 'Mem2 IN'
  141.         OnClick = MemInClick
  142.       end
  143.       object Mem2Out: TMenuItem
  144.         Caption = 'Mem2 OUT'
  145.         OnClick = MemOutClick
  146.       end
  147.       object N4: TMenuItem
  148.         Caption = '-'
  149.       end
  150.       object CalcErase: TMenuItem
  151.         Caption = 'Erase Tape'
  152.         OnClick = CalcEraseClick
  153.       end
  154.       object calcUnerase: TMenuItem
  155.         Caption = 'Un-erase Tape'
  156.         OnClick = calcUneraseClick
  157.       end
  158.       object N2: TMenuItem
  159.         Caption = '-'
  160.       end
  161.       object calcRecalc: TMenuItem
  162.         Caption = 'Recalc'
  163.         OnClick = calcRecalcClick
  164.       end
  165.       object calcIncDecimals: TMenuItem
  166.         Caption = 'Increase Decimals'
  167.         OnClick = calcIncDecimalsClick
  168.       end
  169.       object calcDecDecimals: TMenuItem
  170.         Caption = 'Decrease Decimals'
  171.         OnClick = calcDecDecimalsClick
  172.       end
  173.     end
  174.     object calcHelp: TMenuItem
  175.       Caption = 'Help'
  176.       OnClick = calcHelpClick
  177.     end
  178.   end
  179.   object PrintDialog1: TPrintDialog
  180.     Left = 2
  181.   end
  182. end
  183.