I have a bunch of Declare statements that expose various routines in a DLL:

Code:
Public Declare Sub routinexyz Lib "C:\$User\MYDLL.dll" (variable list)
Is there any way to use a const whose value is "C:\$User\MYDLL.dll" instead of the actual string in every statement? It allows an easy way to change the value of the Lib name (or path).