如果TextBox具有正确的密码,如何使Label1出现,如果没有,则使Label2出现?

时间:2017-12-13 23:50:00

标签: vb.net visual-studio

好吧标题说明了所有内容,所以我现在的代码是:

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” 。显然这是愚蠢的,所以问题是有道理的。

1 个答案:

答案 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