CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2001
    Posts
    1

    Window Services And Api

    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?


  2. #2
    Join Date
    Jan 2000
    Location
    Nottingham, UK
    Posts
    51

    Re: Window Services And Api

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured