View Single Post
Old 09-04-2006, 09:45 PM   #7 (permalink)
jaeusm
 
Software Developer

Join Date: Mar 2006

Location: Columbus, OH

Posts: 569

jaeusm is on a distinguished road

Default

Quote:
Wait, this might help clarify:
When I run my test program I get this error Exactically:

"the procedure entry point RlCalc could not be located in the dynamic link library RANK LIB.dll"
Indeed, this helps alot. For future reference, always post error messages.

Your book is correct, as I was referring to the entry point of the program -- not the dll. I was assuming that you were trying to execute a dll in the same manner as an exe.

Make sure you don't have any older versions of your dll laying around. If you do, you may have mistakenly referenced one of them. Also, make sure that you have specified the name of the method correctly. As you may have guessed, your compiler is saying that it can't find a method named 'RlCalc'. Can you use any other methods in your dll? If not, you might be incorrectly referencing the dll.
jaeusm is offline