简单的一段语句(4行),条件满足,运行结果不对。
Dim jinZhao as Boolean
jinZhao = False
If c3 >= 2 And c4 = 0 Then jinZhao = ture
If c3 >= 2 And c4 = 0 Then Text1.Text = "c3 =" & c3 & "c4 =" & c4 & "jinzhao = " & jinZhao
Stop
运行结果“c3 = 2 c4 = 0 jinZhao=False”!!
这种怪现象可能由哪些原因引起的呢?