如何管理复杂表单的VBA脚本?
我想要一个使用各种 VBA 脚本文件的复杂表单。 但是当我引用另一个模块时,“Me”不起作用。有什么办法可以使用各种模块并像单个文件一样吗?或者你能给我什么其他最佳实践? 问题是我使用VBA 2天了..
I would like to have a complex form that uses various VBA script files.
But when I reference another module, the "Me" doesn't work. Is there any way to use various modules and be like a single file? or what other best practices can you give me?
The problem, is that Im using VBA for 2 days..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您在标准模块中有一个过程“DoSomethingWithForm”。修改它以期望表单引用作为参数。
然后您的表单可以像这样调用该过程:
Say you have a procedure, "DoSomethingWithForm", in a standard module. Modify it to expect a form reference as a parameter.
Then your form can call the procedure like this: