A Module is just a container for one or more Sub, Function or other procedures. You don't open the container - you call the Sub with something like
Call MySubName(arguments)
or execute the function by setting a variable to the function's returned value:
Dim strNewPath As String
strNewpath = openPAtH()
<do something with the path value>