求助VB高手
Private Sub Command1_Click()
Text1.Text = "想学"
End Sub
Private Sub Command2_Click()
Text1.Text = "VB好学吗?"
End Sub
Private Sub Command3_Click()
End
End Sub
请教:当Text1.Text = "VB好学吗?"时,点击Command1让Text1.Text = 好学
提问者: 匿名
这个简单做个判断
Private Sub Command1_Click()
if text1.text = "VB好学吗?" then
text1.text = "非常好学"
else
text1.text = "想学"
end if
End Sub
把这个替换掉你上面那个就可以了
先谢谢你,不过您的帮助并没解决我的问题
..
这个简单做个判断
Private Sub Command1_Click()
if text1.text = "VB好学吗?" then
text1.text = "非常好学"
else
text1.text = "想学"
end if
End Sub
把这个替换掉你上面那个就可以了
先谢谢你,不过您的帮助并没解决我的问题
..





