【VB开源代码栏目提醒】:以下是网学会员为您推荐的VB开源代码-4.4.3.frm,希望本篇文章对您学习有所帮助。
VERSION 5.00
Begin VB.Form Form23
Caption = "Form23"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form23"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form23"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim Password As String
Dim Pword As String
Password = "123456"
'设置密码初始值
P
word = InputBox("输入密码")
'接收用户输入
If Pword <> Password Then
'比较
MsgBox "密码输入不正确,退出!"
End
'退出
程序 End If
End Sub