CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    effect of chaged DLLs

    Hi,
    I have developed some VB Components. Each project module has referece to other module's DLL. So when i change the DLL of one module obvisouly the other modules' DLLs which 'refer' this DLL have to be changed. What is the exact procedure to do this. Should i unregister the old DLLs and delete them..or
    just create another DLL and use it ??


  2. #2
    Guest

    Re: effect of chaged DLLs

    In my opinion, don't register the DLL's untill you have base lined your dll libraray. What I do is create reference to the required DLL from Project->Reference->Browse to the location of your dll. Or just copy the Dlls and Library to your working directory(Which is more efficient since when you have changed the DLL's then you can again replace the old dll with a new one).
    HTH.


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