I have this line in the declarations section:
Private filePath As String
And somthing like this below:
Public Sub Print(filePath As String)
...
End Sub
In the ... part, I want to assign the parameter filePath
to the module-level filePath
. But how can I get access to the latter one? Thanks a lot.