home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / COOLCALC.ZIP / CCALCDLG.DFM / CCALCDLG.txt
Text File  |  1995-09-17  |  7KB  |  367 lines

  1. object dlgCalculator: TdlgCalculator
  2.   Left = 228
  3.   Top = 76
  4.   BorderStyle = bsDialog
  5.   Caption = 'Cool Calculator'
  6.   ClientHeight = 291
  7.   ClientWidth = 222
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   OnCreate = FormCreate
  14.   TextHeight = 16
  15.   object lblResult: TLabel
  16.     Left = 20
  17.     Top = 49
  18.     Width = 9
  19.     Height = 16
  20.     Font.Color = clBlack
  21.     Font.Height = -13
  22.     Font.Name = 'MS Sans Serif'
  23.     Font.Style = [fsBold]
  24.     ParentFont = False
  25.   end
  26.   object shpLine: TShape
  27.     Left = 13
  28.     Top = 216
  29.     Width = 192
  30.     Height = 1
  31.     Brush.Color = clGray
  32.   end
  33.   object lblEqualSign: TLabel
  34.     Left = 8
  35.     Top = 48
  36.     Width = 9
  37.     Height = 16
  38.     Caption = '='
  39.     Font.Color = clBlack
  40.     Font.Height = -13
  41.     Font.Name = 'MS Sans Serif'
  42.     Font.Style = [fsBold]
  43.     ParentFont = False
  44.   end
  45.   object edtExpression: TEdit
  46.     Left = 7
  47.     Top = 16
  48.     Width = 207
  49.     Height = 24
  50.     Font.Color = clBlack
  51.     Font.Height = -13
  52.     Font.Name = 'MS Sans Serif'
  53.     Font.Style = [fsBold]
  54.     ParentFont = False
  55.     TabOrder = 0
  56.     OnKeyUp = edtExpressionKeyUp
  57.   end
  58.   object btn3: TButton
  59.     Left = 115
  60.     Top = 71
  61.     Width = 39
  62.     Height = 28
  63.     Caption = '3'
  64.     Font.Color = clBlack
  65.     Font.Height = -13
  66.     Font.Name = 'MS Sans Serif'
  67.     Font.Style = [fsBold]
  68.     ParentFont = False
  69.     TabOrder = 3
  70.     OnClick = btn1Click
  71.   end
  72.   object btn1: TButton
  73.     Left = 13
  74.     Top = 71
  75.     Width = 39
  76.     Height = 28
  77.     Caption = '1'
  78.     Font.Color = clBlack
  79.     Font.Height = -13
  80.     Font.Name = 'MS Sans Serif'
  81.     Font.Style = [fsBold]
  82.     ParentFont = False
  83.     TabOrder = 1
  84.     OnClick = btn1Click
  85.   end
  86.   object btn4: TButton
  87.     Left = 13
  88.     Top = 108
  89.     Width = 39
  90.     Height = 28
  91.     Caption = '4'
  92.     Font.Color = clBlack
  93.     Font.Height = -13
  94.     Font.Name = 'MS Sans Serif'
  95.     Font.Style = [fsBold]
  96.     ParentFont = False
  97.     TabOrder = 4
  98.     OnClick = btn1Click
  99.   end
  100.   object btn7: TButton
  101.     Left = 13
  102.     Top = 146
  103.     Width = 39
  104.     Height = 28
  105.     Caption = '7'
  106.     Font.Color = clBlack
  107.     Font.Height = -13
  108.     Font.Name = 'MS Sans Serif'
  109.     Font.Style = [fsBold]
  110.     ParentFont = False
  111.     TabOrder = 7
  112.     OnClick = btn1Click
  113.   end
  114.   object btn2: TButton
  115.     Left = 64
  116.     Top = 71
  117.     Width = 39
  118.     Height = 28
  119.     Caption = '2'
  120.     Font.Color = clBlack
  121.     Font.Height = -13
  122.     Font.Name = 'MS Sans Serif'
  123.     Font.Style = [fsBold]
  124.     ParentFont = False
  125.     TabOrder = 2
  126.     OnClick = btn1Click
  127.   end
  128.   object btn5: TButton
  129.     Left = 64
  130.     Top = 109
  131.     Width = 39
  132.     Height = 28
  133.     Caption = '5'
  134.     Font.Color = clBlack
  135.     Font.Height = -13
  136.     Font.Name = 'MS Sans Serif'
  137.     Font.Style = [fsBold]
  138.     ParentFont = False
  139.     TabOrder = 5
  140.     OnClick = btn1Click
  141.   end
  142.   object btn8: TButton
  143.     Left = 64
  144.     Top = 146
  145.     Width = 39
  146.     Height = 28
  147.     Caption = '8'
  148.     Font.Color = clBlack
  149.     Font.Height = -13
  150.     Font.Name = 'MS Sans Serif'
  151.     Font.Style = [fsBold]
  152.     ParentFont = False
  153.     TabOrder = 8
  154.     OnClick = btn1Click
  155.   end
  156.   object btn9: TButton
  157.     Left = 115
  158.     Top = 146
  159.     Width = 39
  160.     Height = 28
  161.     Caption = '9'
  162.     Font.Color = clBlack
  163.     Font.Height = -13
  164.     Font.Name = 'MS Sans Serif'
  165.     Font.Style = [fsBold]
  166.     ParentFont = False
  167.     TabOrder = 9
  168.     OnClick = btn1Click
  169.   end
  170.   object btn6: TButton
  171.     Left = 115
  172.     Top = 109
  173.     Width = 39
  174.     Height = 28
  175.     Caption = '6'
  176.     Font.Color = clBlack
  177.     Font.Height = -13
  178.     Font.Name = 'MS Sans Serif'
  179.     Font.Style = [fsBold]
  180.     ParentFont = False
  181.     TabOrder = 6
  182.     OnClick = btn1Click
  183.   end
  184.   object btn0: TButton
  185.     Left = 13
  186.     Top = 182
  187.     Width = 39
  188.     Height = 28
  189.     Caption = '0'
  190.     Font.Color = clBlack
  191.     Font.Height = -13
  192.     Font.Name = 'MS Sans Serif'
  193.     Font.Style = [fsBold]
  194.     ParentFont = False
  195.     TabOrder = 10
  196.     OnClick = btn1Click
  197.   end
  198.   object btnDecimal: TButton
  199.     Left = 64
  200.     Top = 182
  201.     Width = 39
  202.     Height = 28
  203.     Caption = '.'
  204.     Font.Color = clBlack
  205.     Font.Height = -24
  206.     Font.Name = 'MS Sans Serif'
  207.     Font.Style = [fsBold]
  208.     ParentFont = False
  209.     TabOrder = 11
  210.     OnClick = btn1Click
  211.   end
  212.   object btnEquals: TButton
  213.     Left = 115
  214.     Top = 182
  215.     Width = 39
  216.     Height = 28
  217.     Caption = '='
  218.     Font.Color = clBlack
  219.     Font.Height = -24
  220.     Font.Name = 'MS Sans Serif'
  221.     Font.Style = [fsBold]
  222.     ParentFont = False
  223.     TabOrder = 16
  224.     OnClick = btnEqualsClick
  225.   end
  226.   object btnDivide: TButton
  227.     Left = 166
  228.     Top = 71
  229.     Width = 39
  230.     Height = 28
  231.     Caption = '/'
  232.     Font.Color = clBlack
  233.     Font.Height = -13
  234.     Font.Name = 'MS Sans Serif'
  235.     Font.Style = [fsBold]
  236.     ParentFont = False
  237.     TabOrder = 12
  238.     OnClick = btn1Click
  239.   end
  240.   object btnMultiply: TButton
  241.     Left = 166
  242.     Top = 109
  243.     Width = 39
  244.     Height = 28
  245.     Caption = '*'
  246.     Font.Color = clBlack
  247.     Font.Height = -24
  248.     Font.Name = 'Arial'
  249.     Font.Style = [fsBold]
  250.     ParentFont = False
  251.     TabOrder = 13
  252.     OnClick = btn1Click
  253.   end
  254.   object btnMinus: TButton
  255.     Left = 166
  256.     Top = 146
  257.     Width = 39
  258.     Height = 28
  259.     Caption = '-'
  260.     Font.Color = clBlack
  261.     Font.Height = -24
  262.     Font.Name = 'MS Sans Serif'
  263.     Font.Style = [fsBold]
  264.     ParentFont = False
  265.     TabOrder = 14
  266.     OnClick = btn1Click
  267.   end
  268.   object btnPlus: TButton
  269.     Left = 166
  270.     Top = 182
  271.     Width = 39
  272.     Height = 28
  273.     Caption = '+'
  274.     Font.Color = clBlack
  275.     Font.Height = -24
  276.     Font.Name = 'MS Sans Serif'
  277.     Font.Style = [fsBold]
  278.     ParentFont = False
  279.     TabOrder = 15
  280.     OnClick = btn1Click
  281.   end
  282.   object btnExampleA: TButton
  283.     Left = 13
  284.     Top = 256
  285.     Width = 64
  286.     Height = 28
  287.     Caption = '&Example A'
  288.     Font.Color = clBlack
  289.     Font.Height = -11
  290.     Font.Name = 'MS Sans Serif'
  291.     Font.Style = []
  292.     ParentFont = False
  293.     TabOrder = 21
  294.     OnClick = btnExampleAClick
  295.   end
  296.   object btnClear: TButton
  297.     Left = 13
  298.     Top = 222
  299.     Width = 46
  300.     Height = 28
  301.     Caption = '&Clear'
  302.     Font.Color = clBlack
  303.     Font.Height = -11
  304.     Font.Name = 'MS Sans Serif'
  305.     Font.Style = [fsBold]
  306.     ParentFont = False
  307.     TabOrder = 17
  308.     OnClick = btnClearClick
  309.   end
  310.   object btnLeftBracket: TButton
  311.     Left = 154
  312.     Top = 222
  313.     Width = 27
  314.     Height = 28
  315.     Caption = '('
  316.     Font.Color = clBlack
  317.     Font.Height = -13
  318.     Font.Name = 'MS Sans Serif'
  319.     Font.Style = [fsBold]
  320.     ParentFont = False
  321.     TabOrder = 19
  322.     OnClick = btn1Click
  323.   end
  324.   object btnRightBracket: TButton
  325.     Left = 180
  326.     Top = 222
  327.     Width = 25
  328.     Height = 28
  329.     Caption = ')'
  330.     Font.Color = clBlack
  331.     Font.Height = -13
  332.     Font.Name = 'MS Sans Serif'
  333.     Font.Style = [fsBold]
  334.     ParentFont = False
  335.     TabOrder = 20
  336.     OnClick = btn1Click
  337.   end
  338.   object btnBackSpace: TButton
  339.     Left = 64
  340.     Top = 222
  341.     Width = 84
  342.     Height = 28
  343.     Caption = 'Backspace'
  344.     TabOrder = 18
  345.     OnClick = btnBackSpaceClick
  346.   end
  347.   object btnEnter: TButton
  348.     Left = 143
  349.     Top = 256
  350.     Width = 62
  351.     Height = 28
  352.     Caption = 'Enter'
  353.     Default = True
  354.     TabOrder = 23
  355.     OnClick = btnEqualsClick
  356.   end
  357.   object btnAbout: TButton
  358.     Left = 82
  359.     Top = 256
  360.     Width = 56
  361.     Height = 28
  362.     Caption = '&About'
  363.     TabOrder = 22
  364.     OnClick = btnAboutClick
  365.   end
  366. end
  367.