I get an error 432 "i.e. Can't find dll entry point RegisterServiceProcess in Kernel32" in vb when I try to call RegisterServiceProcess Function. Anybody with an idear why this error?
Printable View
I get an error 432 "i.e. Can't find dll entry point RegisterServiceProcess in Kernel32" in vb when I try to call RegisterServiceProcess Function. Anybody with an idear why this error?
Have you checked that this entry point exists in the actual dll you are using? You can look by right-clicking on the dll (make sure it really is the one VB is loading and not another one with the same name on your disk) and doing QuickView. You get a list of exported functions. Make sure that the name you gave VB matches the name in the list of exports in every tiny detail.
Ian