无效的外部过程

发布于 2024-11-24 01:31:41 字数 295 浏览 0 评论 0原文

我想在字符串“path”中存储一个路径,该路径可用于整个工作簿。

当我按照以下方式执行此操作时,出现错误: “无效的外部过程”

这是我尝试在(常规)(声明)中声明路径的方式,

Option Explicit
Dim path As String

 path = "\\sharedDrive\TestFolder\Test_PDF\"

我收到错误:

"\\sharedDrive\TestFolder\Test_PDF\"

I want to store a path in string "path" which would be available for the whole workbook.

When I do it the following way, I get an error:
"invalid outside procedure"

Here is how I am trying to declare the path in (General) (Declaration)

Option Explicit
Dim path As String

 path = "\\sharedDrive\TestFolder\Test_PDF\"

I get the error at:

"\\sharedDrive\TestFolder\Test_PDF\"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓬勃野心 2024-12-01 01:31:41

将变量放入模块中,如下所示:

Public path As String

然后,在 Workbook_Open 例程中:

Private Sub Workbook_Open()
    yourModule.path = "\\sharedDrive\TestFolder\Test_PDF\"
End Sub

要在任何位置访问它,请使用 yourModule.path

Put the variable in a module instead, like this:

Public path As String

Then, in your Workbook_Open routine:

Private Sub Workbook_Open()
    yourModule.path = "\\sharedDrive\TestFolder\Test_PDF\"
End Sub

To access it anywhere, use yourModule.path.

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