当前位置:知识百答>生活百科>vb中的if语句

vb中的if语句

2023-08-21 18:26:17 编辑:join 浏览量:601

vb中的if语句

检测事件是在文本框中的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,语句

版权声明:文章由 知识百答 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.zhshbaida.com/life/233358.html
热门文章