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.
我在 Access VBA 中有一个子程序,我想从用户那里获得一些输入。我将代码放入输入框,但是当我运行它时,没有出现对话框供用户输入输入。
我有这样的事情:
Dim Test As String Test = InputBox("Enter Stuff Here:")
代码将运行良好,但没有任何反应。我在这里做错了什么?
您是否可以运行代码,例如,将其发布到模块中,而不是表单模块中,然后运行(f5)它:
Sub MyInput() Dim Test As String Test = InputBox("Enter Stuff Here:") End Sub
顺便说一句,使用 MS Access 获取用户输入的最佳方式是表单。