VB里面的is关系运算符
发布网友
发布时间:2022-04-27 01:43
我来回答
共3个回答
热心网友
时间:2022-06-22 03:08
is运算符比较两个对象引用变量,
要注意的是一定要是对象的比较,
如:
'''窗体上添加2个textbox
private
sub
form_load()
if
text1
is
text2
then
'可以改为
if
text1
is
text1
then
在看下结果
msgbox
"yes"
else
msgbox
"no"
end
if
end
sub
热心网友
时间:2022-06-22 03:09
label应该输入不了东西吧,textbox才能,两个textbox,中间一个label,一个button,在button的click事件函数里写
select case textbox1.text
case is=textbox2.text
msgbox "true"
case is<>textbox2.text
msgbox "false"
end select
热心网友
时间:2022-06-22 03:09
Select Case Text1.Text
Case Is = Text2.Text
MsgBox "true"
Case Else
MsgBox "false"
End Select