用VF怎么做简易计算器啊

用VF怎么做简易计算器啊,第1张

你在计算按钮双击,在其click事件中输入代码

a=thisform.text1.value

b=thisform.text2.value

n=thisform.optiongroup1.value

do  case

   case  n=1

     thisform.text3.value=a+b

   case  n=2

      thisform.text3.value=a-b

   case  n=3

      thisform.text3.value=a*b

   case  n=4

      thisform.text3.value=a/b

endcase

thisform.refresh

你在计算按钮上双击,在其click事件中输入代码

a=thisform.text1.value

b=thisform.text2.value

n=thisform.optiongroup1.value

do case

case n=1

thisform.text3.value=a+b

case n=2

thisform.text3.value=a-b

case n=3

thisform.text3.value=a*b

case n=4

thisform.text3.value=a/b

endcase

thisform.refresh


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11186332.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存