home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / calcfrm1.dfm / calcfrm1.txt
Encoding:
Text File  |  1996-09-15  |  8.3 KB  |  355 lines

  1. object calcForm: TcalcForm
  2.   Left = 108
  3.   Top = 128
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Formula Builder Calculator Example'
  7.   ClientHeight = 311
  8.   ClientWidth = 593
  9.   Font.Color = clWindowText
  10.   Font.Height = -16
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   PixelsPerInch = 120
  14.   Position = poDefault
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   TextHeight = 20
  18.   object Bevel3: TBevel
  19.     Left = 150
  20.     Top = 80
  21.     Width = 91
  22.     Height = 171
  23.   end
  24.   object Bevel2: TBevel
  25.     Left = 10
  26.     Top = 80
  27.     Width = 131
  28.     Height = 171
  29.   end
  30.   object Bevel1: TBevel
  31.     Left = 10
  32.     Top = 10
  33.     Width = 571
  34.     Height = 51
  35.   end
  36.   object Button7: TSpeedButton
  37.     Left = 20
  38.     Top = 90
  39.     Width = 31
  40.     Height = 31
  41.     Caption = '&7'
  42.     OnClick = Button7Click
  43.   end
  44.   object Button8: TSpeedButton
  45.     Left = 60
  46.     Top = 90
  47.     Width = 31
  48.     Height = 31
  49.     Caption = '&8'
  50.     OnClick = Button7Click
  51.   end
  52.   object Button9: TSpeedButton
  53.     Left = 100
  54.     Top = 90
  55.     Width = 31
  56.     Height = 31
  57.     Caption = '&9'
  58.     OnClick = Button7Click
  59.   end
  60.   object Button4: TSpeedButton
  61.     Left = 20
  62.     Top = 130
  63.     Width = 31
  64.     Height = 31
  65.     Caption = '&4'
  66.     OnClick = Button7Click
  67.   end
  68.   object Button5: TSpeedButton
  69.     Left = 60
  70.     Top = 130
  71.     Width = 31
  72.     Height = 31
  73.     Caption = '&5'
  74.     OnClick = Button7Click
  75.   end
  76.   object Button6: TSpeedButton
  77.     Left = 100
  78.     Top = 130
  79.     Width = 31
  80.     Height = 31
  81.     Caption = '&6'
  82.     OnClick = Button7Click
  83.   end
  84.   object Button1: TSpeedButton
  85.     Left = 20
  86.     Top = 170
  87.     Width = 31
  88.     Height = 31
  89.     Caption = '&1'
  90.     OnClick = Button7Click
  91.   end
  92.   object Button2: TSpeedButton
  93.     Left = 60
  94.     Top = 170
  95.     Width = 31
  96.     Height = 31
  97.     Caption = '&2'
  98.     OnClick = Button7Click
  99.   end
  100.   object Button3: TSpeedButton
  101.     Left = 100
  102.     Top = 170
  103.     Width = 31
  104.     Height = 31
  105.     Caption = '&3'
  106.     OnClick = Button7Click
  107.   end
  108.   object Button0: TSpeedButton
  109.     Left = 20
  110.     Top = 210
  111.     Width = 31
  112.     Height = 31
  113.     Caption = '&0'
  114.     OnClick = Button7Click
  115.   end
  116.   object PlusMinusBtn: TSpeedButton
  117.     Left = 100
  118.     Top = 210
  119.     Width = 31
  120.     Height = 31
  121.     Caption = '+/-'
  122.     OnClick = PlusMinusBtnClick
  123.   end
  124.   object PeriodBtn: TSpeedButton
  125.     Left = 60
  126.     Top = 210
  127.     Width = 31
  128.     Height = 31
  129.     Caption = '&.'
  130.     OnClick = Button7Click
  131.   end
  132.   object MultBtn: TSpeedButton
  133.     Left = 160
  134.     Top = 90
  135.     Width = 31
  136.     Height = 31
  137.     Caption = '&*'
  138.     OnClick = Button7Click
  139.   end
  140.   object MinusBtn: TSpeedButton
  141.     Left = 200
  142.     Top = 130
  143.     Width = 31
  144.     Height = 31
  145.     Caption = '&-'
  146.     OnClick = Button7Click
  147.   end
  148.   object DivBtn: TSpeedButton
  149.     Left = 200
  150.     Top = 90
  151.     Width = 31
  152.     Height = 31
  153.     Caption = '&/'
  154.     OnClick = Button7Click
  155.   end
  156.   object PlusBtn: TSpeedButton
  157.     Left = 160
  158.     Top = 130
  159.     Width = 31
  160.     Height = 31
  161.     Caption = '&+'
  162.     OnClick = Button7Click
  163.   end
  164.   object LParenBtn: TSpeedButton
  165.     Left = 160
  166.     Top = 170
  167.     Width = 31
  168.     Height = 31
  169.     Caption = '('
  170.     OnClick = LParenBtnClick
  171.   end
  172.   object RParenBtn: TSpeedButton
  173.     Left = 200
  174.     Top = 170
  175.     Width = 31
  176.     Height = 31
  177.     Caption = ')'
  178.     OnClick = LParenBtnClick
  179.   end
  180.   object ExponenBtn: TSpeedButton
  181.     Left = 160
  182.     Top = 210
  183.     Width = 31
  184.     Height = 31
  185.     Caption = '^'
  186.     OnClick = LParenBtnClick
  187.   end
  188.   object EqualBtn: TSpeedButton
  189.     Left = 200
  190.     Top = 210
  191.     Width = 31
  192.     Height = 31
  193.     Caption = '='
  194.     OnClick = EqualBtnClick
  195.   end
  196.   object StatusPanel: TPanel
  197.     Left = 0
  198.     Top = 270
  199.     Width = 593
  200.     Height = 41
  201.     Align = alBottom
  202.     Alignment = taLeftJustify
  203.     BevelInner = bvRaised
  204.     BevelOuter = bvLowered
  205.     BorderStyle = bsSingle
  206.     Font.Color = clBlack
  207.     Font.Height = -17
  208.     Font.Name = 'Arial'
  209.     Font.Style = []
  210.     ParentFont = False
  211.     TabOrder = 4
  212.   end
  213.   object ExitBtn: TBitBtn
  214.     Left = 480
  215.     Top = 225
  216.     Width = 84
  217.     Height = 33
  218.     Hint = 'Close'
  219.     Caption = '&Exit'
  220.     TabOrder = 1
  221.     Kind = bkClose
  222.   end
  223.   object ClearBtn: TBitBtn
  224.     Left = 480
  225.     Top = 113
  226.     Width = 84
  227.     Height = 32
  228.     Hint = 'Clear'
  229.     Cancel = True
  230.     Caption = '&Clear'
  231.     Font.Color = clWindowText
  232.     Font.Height = -17
  233.     Font.Name = 'System'
  234.     Font.Pitch = fpVariable
  235.     Font.Style = []
  236.     ParentFont = False
  237.     TabOrder = 2
  238.     OnClick = ClearBtnClick
  239.     Glyph.Data = {
  240.       78010000424D7801000000000000760000002800000020000000100000000100
  241.       04000000000000000000120B0000120B00000000000000000000000000000000
  242.       800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  243.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00500005000555
  244.       555557777F777555F55500000000555055557777777755F75555005500055055
  245.       555577F5777F57555555005550055555555577FF577F5FF55555500550050055
  246.       5555577FF77577FF555555005050110555555577F757777FF555555505099910
  247.       555555FF75777777FF555005550999910555577F5F77777775F5500505509990
  248.       3055577F75F77777575F55005055090B030555775755777575755555555550B0
  249.       B03055555F555757575755550555550B0B335555755555757555555555555550
  250.       BBB35555F55555575F555550555555550BBB55575555555575F5555555555555
  251.       50BB555555555555575F555555555555550B55555555555555750000}
  252.     NumGlyphs = 2
  253.   end
  254.   object BackBtn: TBitBtn
  255.     Left = 480
  256.     Top = 150
  257.     Width = 84
  258.     Height = 33
  259.     Hint = 'Back'
  260.     Cancel = True
  261.     Caption = '&Back'
  262.     TabOrder = 3
  263.     OnClick = BackBtnClick
  264.     Glyph.Data = {
  265.       78010000424D7801000000000000760000002800000020000000100000000100
  266.       04000000000000000000120B0000120B00000000000000000000000000000000
  267.       800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  268.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
  269.       3333333333333333333333333333333333333333333333333333333333333333
  270.       3333333333333FF3333333333333003333333333333F77F33333333333009033
  271.       333333333F7737F333333333009990333333333F773337FFFFFF330099999000
  272.       00003F773333377777770099999999999990773FF33333FFFFF7330099999000
  273.       000033773FF33777777733330099903333333333773FF7F33333333333009033
  274.       33333333337737F3333333333333003333333333333377333333333333333333
  275.       3333333333333333333333333333333333333333333333333333333333333333
  276.       33333333333333333333333333333333333333333333333333330000}
  277.     NumGlyphs = 2
  278.   end
  279.   object FormulaField: TComboBox
  280.     Left = 20
  281.     Top = 20
  282.     Width = 546
  283.     Height = 29
  284.     ItemHeight = 20
  285.     TabOrder = 0
  286.   end
  287.   object VariablesBtn: TBitBtn
  288.     Left = 480
  289.     Top = 75
  290.     Width = 84
  291.     Height = 33
  292.     Caption = '&Vars'
  293.     Font.Color = clBlack
  294.     Font.Height = -17
  295.     Font.Name = 'System'
  296.     Font.Style = []
  297.     ParentFont = False
  298.     TabOrder = 5
  299.     OnClick = VariablesBtnClick
  300.   end
  301.   object Panel2: TPanel
  302.     Left = 250
  303.     Top = 80
  304.     Width = 211
  305.     Height = 171
  306.     BevelInner = bvRaised
  307.     TabOrder = 6
  308.     object FunctionNames: TListBox
  309.       Left = 2
  310.       Top = 2
  311.       Width = 207
  312.       Height = 158
  313.       Align = alClient
  314.       Font.Color = clBlack
  315.       Font.Height = -10
  316.       Font.Name = 'MS Sans Serif'
  317.       Font.Style = []
  318.       IntegralHeight = True
  319.       ItemHeight = 13
  320.       ParentFont = False
  321.       Sorted = True
  322.       TabOrder = 0
  323.       OnDblClick = FunctionNamesDblClick
  324.     end
  325.   end
  326.   object CalcBtn: TBitBtn
  327.     Left = 480
  328.     Top = 188
  329.     Width = 84
  330.     Height = 32
  331.     Caption = 'Calc'
  332.     TabOrder = 7
  333.     OnClick = CalcBtnClick
  334.     Glyph.Data = {
  335.       78010000424D7801000000000000760000002800000020000000100000000100
  336.       04000000000000000000120B0000120B00000000000000000000000000000000
  337.       800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  338.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00555555555555
  339.       555555555555555555555555555555555555555555FF55555555555559055555
  340.       55555555577FF5555555555599905555555555557777F5555555555599905555
  341.       555555557777FF5555555559999905555555555777777F555555559999990555
  342.       5555557777777FF5555557990599905555555777757777F55555790555599055
  343.       55557775555777FF5555555555599905555555555557777F5555555555559905
  344.       555555555555777FF5555555555559905555555555555777FF55555555555579
  345.       05555555555555777FF5555555555557905555555555555777FF555555555555
  346.       59905555555555555777555555555555555555555555555555550000}
  347.     NumGlyphs = 2
  348.   end
  349.   object Expression: TExpression
  350.     UseExceptions = False
  351.     Left = 306
  352.     Top = 48
  353.   end
  354. end
  355.