[求助]源码的密码!
网上下了好多VB源码,可用VB6.0打开的时候都说要密码啊,怎么能解决呢?小弟先谢谢了哈!!!
有些密码也就写在原代码里的呀.
eg:
Private Sub cmdOK_Click()
'check for correct password
If txtPassword = "123" And txtUserName = "123" Then
'place code to here to pass the
'success to the calling sub
'setting a global var is the easiest
LoginSucceeded = True
Me.Hide
fmStart.Show
Else
MsgBox "密码错误,请重新输入!", , "提示"
txtPassword.SetFocus
SendKeys "{Home}+{End}"
End If
End Sub
Private Sub Form_Load()
Load fmStart
fmStart.Hide
End Sub
Private Sub txtUserName_Change()
End Sub