好吧标题说明了所有内容,所以我现在的代码是:
If TextBox1.Text = ("mypassword") Then
Form2.Show()
End If
Timer1.Start()
Threading.Thread.Sleep(5000)
If TextBox1.Text = ("mypassword") Then
Label1.Visible = True
End If
如何让我的程序检查TextBox1.text是否包含“mypassword”,如果是,它显示Label1包含“approved”,如果它没有说“mypassword”it = label2并显示“not approved” 。显然这是愚蠢的,所以问题是有道理的。
答案 0 :(得分:0)
根据我对VBA的记忆,这应该有效:
If TextBox1.Text = ("mypassword") Then
Label1.Visible = True
Else
Label2.Visible = True
End If
但是你可能想考虑一下你是否真的想要使用两个标签。我建议使用一个标签并更改其.Text值:
If TextBox1.Text = ("mypassword") Then
Label1.Text = "Approved"
Else
Label1.Text = "Not Approved"
End If