如何管理复杂表单的VBA脚本?

发布于 2024-11-04 21:24:27 字数 108 浏览 0 评论 0原文

我想要一个使用各种 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻之岛 2024-11-11 21:24:27

假设您在标准模块中有一个过程“DoSomethingWithForm”。修改它以期望表单引用作为参数。

Public Sub DoSomethingWithForm(ByRef frm As Form)
    MsgBox "The name of this form is " & frm.Name
End Sub

然后您的表单可以像这样调用该过程:

Private Sub cmdWhoAmI_Click()
    DoSomethingWithForm Me
End Sub

Say you have a procedure, "DoSomethingWithForm", in a standard module. Modify it to expect a form reference as a parameter.

Public Sub DoSomethingWithForm(ByRef frm As Form)
    MsgBox "The name of this form is " & frm.Name
End Sub

Then your form can call the procedure like this:

Private Sub cmdWhoAmI_Click()
    DoSomethingWithForm Me
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文