CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2001
    Location
    Newcastle Ontario, Canada
    Posts
    118

    Unregistered DLL

    I am making a program that interacts with WindowsNT Indexing service. I included a DLL into the project, it seems to work fine at design time, but when I goto runtime it gives me an "Unregistered DLL" error.
    The DLL wasnt originially on the computer, I had to copy it to the system32 dir from the Win Installation CD.

    Anyone know how to Register the DLL?

    Thanks,
    Steve


  2. #2
    Join Date
    Jun 2000
    Location
    South Africa
    Posts
    18

    Re: Unregistered DLL

    sure:

    regsvr32.exe (full path & filename)
    append a "-u" at the end to unregister

    baldric

    Real programmers don't comment. If it was difficult to write, it should be difficult to read.

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