这个是我程序其中的一段代码:
If n >= 0.04 And n < 0.06 Then
Text0 = 0.004
Text1 = 0.0024
Label11.Caption = "Φ" + Str$(Val(Text4) + Val(Text2) + Val(Text0) + Val(Text1) / 2)
Label12.Caption = "Φ" + Str$(Val(Text2) + Val(Text3))
Label15.Caption = Str$(Val(Text1))
Label16.Caption = Str$(Val(Text1))
End If
最后两句:label15、label16均等于text1的值,我是分为两句写的。不知道能不能简单化用一句来表达。
label15.caption = label16.caption = Str$(Val(Text1))
这样写无法计算。。。。