Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个登录屏幕。我的表单有一个命令按钮和一个文本框控件。我在命令按钮单击事件中编写了一个代码来检查在文本框中输入的密码。当我运行这个程序时,我收到以下错误。
“除非控件具有焦点,否则您不能引用控件的属性或方法。”
我期待您的帮助以纠正此错误。
我对 ms 访问编程非常陌生。
我会使用类似的东西:
txtPassword.SetFocus
然后你可以像这样检测它:
If Screen.ActiveControl = txtPassword Then If txtPassword.Text = xyz Then 'Do something End If End If