Is the Dll a VbAx Dll or a C++ dll.What do you want to do with it.Call a function from the dll.
if it is a C++ dll then:
Code:
Public Declare Function yourfunction Lib "PRC.DLL" (ByVal arguments) As something
You can also load a dll using the LoadLibrary API Function.