In the "ThisDocument" object I declared
Code:
Public filePath As String
and the created a sub immediately following it in the "ThisDocument" object that assigns a url to that variable. My understanding is that I should then be able to access that variable from any other module in my project. However, the variable is empty.
Is my understanding about of Public variables incorrect? My intent is to declare and define a URL path as a variable in one location and then reference that variable in multiple different modules within the same project.