检测事件是在文本框中的change事件中判断,也就是说只要文本框有改变就检测!
如果把其中的 and 改写成 or 就可以判断其中一个文本是否为空!
private sub text1_change()
'判断文本框最快的速度还是判断它的长度是否为0
if len(text1.text)=0 and len(text2.text)=0 then
image5.visible = false
else
image5.visible = true
end if
end sub
private sub text2_change()
if len(text1.text)=0 and len(text2.text)=0 then
image5.visible = false
else
image5.visible = true
end if
end sub
完美财经网 http://
private sub text1_change()
if text1.text="" and text2.text="" then
image5.visible = false
else
image5.visible = true
end if
end sub
private sub text2_change()
if text1.text="" and text2.text="" then
image5.visible = false
else
image5.visible = true
end if
end sub
在text2的change事件当中处理一下不就可以了吗
private sub text1_change()
if text1.text="" and text2.text=" then IMAGE5.visible=False
if text1.text<>"" and text2.text<>" then IMAGE5.visible=true
end sub
private sub text2_change()
if text1.text="" and text2.text=" then IMAGE5.visible=False
if text1.text<>"" and text2.text<>" then IMAGE5.visible=true
end sub
标签:vb,语句