怎么用vb 编写:当text1="1" 或者 text1="b" then text2="2" 当text1再次="1" 时 or ="b" 则 text3="3"
5个回答
展开全部
n=0 '变量n,记录出现次数
if text1="1" or text1="b" then
if n=0 then '第一次
text2="2"
n=1
else if n=1 then '第二次
text3="3"
n=2
end if
end if
这样,我初学,希望能用 -0-
if text1="1" or text1="b" then
if n=0 then '第一次
text2="2"
n=1
else if n=1 then '第二次
text3="3"
n=2
end if
end if
这样,我初学,希望能用 -0-
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if text1.text ="1" or text1.text= "b" then
if text2.text="2" then
text3.text="3"
else
text2.text="2"
end if
end if
if text2.text="2" then
text3.text="3"
else
text2.text="2"
end if
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private isNotFirst As Boolean '全局
Private Function SetText()
If text1="1" Or text1="b" Then
If Not isNotFirst Then
text2="2"
Else
text3="3"
End if
End If
End Function
Private Function SetText()
If text1="1" Or text1="b" Then
If Not isNotFirst Then
text2="2"
Else
text3="3"
End if
End If
End Function
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if text1.text=1 then
text2.text=2
end if
if text1.text="1" or "b"then
text3="3"
end if
end sub
text2.text=2
end if
if text1.text="1" or "b"then
text3="3"
end if
end sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dim i as integer
private sub command1_click()
if text1="1 or text1="b" then
if i<1 then
text2="2
else
text2="3"
endif
i=i+1
endif
end sub
private sub command1_click()
if text1="1 or text1="b" then
if i<1 then
text2="2
else
text2="3"
endif
i=i+1
endif
end sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询