检查多个TexBox中的某些文本

时间:2020-05-10 17:37:34

标签: vb.net textbox

我有一个为朋友制作的恶作剧防病毒程序。该软件的一部分需要“激活”才能删除“病毒”。当我单击按钮时,我有4个文本框,我希望检查所有4个TexBox的文本“ 0000”。当我有一个TextBox时,它的效果很好,但是在出现消息框之前,需要检查所有4个框。我希望这是有道理的。 See image here

[编辑]我要提到的是我在编程方面是个菜鸟。

pcm.dsnoopUB1 {
    type dsnoop         # this plugin splits one capture stream to more
    ipc_key 2052        # (IPC = Inter-Process Communication) must be unique
    ipc_key_add_uid 0   # multi-user sharing
    ipc_perm 0666       # permissions for multi-user sharing
    slave {pcm "hw:UB1,0"; channels 1}  # HW identification (see arecord -l), micrpohone - mostly mono
}

pcm.!default {
    type asym
    playback.pcm "plug:assistJK"
    capture.pcm "plug:dsnoopUB1"
}

1 个答案:

答案 0 :(得分:1)

有很多方法可以做您想做的事。这是一个可以构建的非常简单的代码:

xprop -spy

玩得开心!

编辑:

要有4个不同的字符串:只需链接4个检查。像这样:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    ' check all the TextBoxes in the array. Return if one isn't valid
    For Each textbox As TextBox In {TextBox1, TextBox2, TextBox3, TextBox4}
        If textbox.Text <> "0000" Then
            Return
        End If
    Next

    ' If all TextBox contains the valid string, this will appear
    MsgBox("Registered")
    Me.Hide()
End Sub