AndyK
December 29th, 1999, 02:35 AM
What are exact steps please, I'm not that good with all that API stuff....
|
Click to See Complete Forum and Search --> : I have this DLL and i want to use it in my program, but how do I get APIs from it??? AndyK December 29th, 1999, 02:35 AM What are exact steps please, I'm not that good with all that API stuff.... Crazy D @ Work December 29th, 1999, 03:34 AM Check documentation that ships with the dll. It's impossible to find out the function and it's parameters from the dll. Crazy D @ Work :-) ufo December 29th, 1999, 03:43 AM Correct VB syntax for calling non-com DLL is like that: Declare Function GetWindowsDirectory Lib "kernel32" Alias "GetWindowsDirectoryA" (byval lpBuffer as string, byval nSize as Long) as Long IF you don't have documentaiton for that DLL you can find basic information regarding your functions inside DLL if you right-click on DLL and click QuickView but you still need to know parameters and so on. [ufo] codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |