I am trying to declare a dll function in VB6.
The syntax for a Declare statement is as follows:
[Public | Private] Declare Function name Lib "libname" [Alias "aliasname"] [([arglist])] [As type]
I will not know the name of the dll until run time. So, at run time I read the dll name into a...