signs you in a password program.txt

来自「VB的木马和病毒指南」· 文本 代码 · 共 24 行

TXT
24
字号
Alex is the password 


############################################################################




(text=text1    command=cmdok) where it says if text1.text = "Alex"then ("Alex"is the password so if you want you could change it)



Private Sub cmdok_Click()
    If Text1.Text = "Alex" Then
End
    Else
    MsgBox "Access Denied"
End If

If Text1.Text = "" Then
    MsgBox "please type a password"
        End If
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?