the dll is attached and has one function named Greet(). Its a vb.net dll that has been converted by ZK's dll converter for vb.net dlls to run under DBP without wrappers, as standard exported function dlls. Anyway if you have dbp and no .NET installed please copy this dll to an new project folder, and add the following code to the dbp main code.
load dll "ZKtest.dll",1
print "Press any key..."
wait key
x as string
x=call dll(1,"Greet","Anyone")
print x
wait key
delete dll 1
let me know what the message said.
Thanks
EDIT: if you have .net this will run no problem but I am specifically trying to find out if .net is needed once the dll is converted to unmanaged code.