因此,我正在尝试在Powerpoint中运行此登录系统。一切正常,直到我遇到了这段特定的代码:
Private Sub Login_Click()
If Password.Text = PasswordReg.Text Then
SlideShowWindows(Index:=1).View.GotoSlide 6
Else
MsgBox "Incorrect Password", 16, "Incorrect Password"
End if
Password.Text = ""
End Sub
我的目标是让用户先输入密码,然后才能继续下一张幻灯片,但是在此之前,他们需要“注册”,也就是提供自己的密码,该密码将在名为“ PasswordReg”,位于另一张幻灯片中。
如果将PasswordReg.Text
替换为"insertpasswordhere"
,则它可以正常运行,但是我希望密码是可变的,而不是由编码器来设置。是不是在if-then-else语句中不允许这样做?还是我做错了什么?