用VF怎么做简易计算器啊

来源:学生作业帮助网 编辑:六六作业网 时间:2025/01/24 09:45:56
用VF怎么做简易计算器啊用VF怎么做简易计算器啊用VF怎么做简易计算器啊你在计算按钮上双击,在其click事件中输入代码a=thisform.text1.valueb=thisform.text2.v

用VF怎么做简易计算器啊
用VF怎么做简易计算器啊

用VF怎么做简易计算器啊

你在计算按钮上双击,在其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