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.
我正在使用以下代码将变量传递给另一个子。如果两个潜艇都驻留在同一个地方,它工作正常。现在我将我的“Selectsheet”子移动到模块 1。现在我不知道如何传递我的变量。任何想法?
Selectsheet X:="B6"
谢谢
您应该将您的子声明更改为公开
Public Sub SelectSheet(X as String)
您不能从不同的模块访问私人潜艇。