I have a very simple DLL that contain 5 routines.

1) What do I have to do to make this DLL available to Visual Basic??

2) What do I need to do to register this DLL with Windows, or do I???

I tried a few things, but I keep getting an Error saying "FILE NOT FOUND" and it referes to the below line in my declarations:

Private Declare Sub trInfo Lib "trackw" (rev%)

I have also tried it this way:

Private Declare Sub trInfo Lib "c:\windows\trackw.dll" (rev%)

Is this case sensitive??? I am lost?!?!?!


thanks for the help.