Results 1 to 5 of 5

Thread: [RESOLVED] [2005] Compiling a DLL without compiling associated Apps?

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Resolved [RESOLVED] [2005] Compiling a DLL without compiling associated Apps?

    Is it possible to make changes to a DLL and recompile it without having to go into every program that calls this DLL and recompile the program as well? If so, how do I do this?

    Thanks,
    Blake

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: [2005] Compiling a DLL without compiling associated Apps?

    In short. Yes. In longer - it depends on just what the change was. If you removed a public function, then you might want to find out if anythign was using it. If what ever you changed was internal coding, then no, it's not necessary. In fact, when you have a solution open, and you Build it, it only builds the changed components. If nothing has changed since the last build, it skips it and move to the next one.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Re: [2005] Compiling a DLL without compiling associated Apps?

    Tech,

    I only ask this because of the problem I'm having with a previous post:

    http://www.vbforums.com/showthread.php?t=542514

    I'm thinking if I just try and recompile the DLL, it might fix my problem but I'm not sure. If it doesn't fix my problem, I don't want to have to go into every program that calls this DLL and recompile them just because I recompiled a DLL.

    Hope that makes sense!

    Thanks,
    Blake

  4. #4
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: [2005] Compiling a DLL without compiling associated Apps?

    Ok, now it's in context... and hte answer is, yes you can do that. That's part of the beauty of .NET, things don't have to be registered, the app jsut simply needs to know where it can get to the file. So, yes, you should be able to recompile just the DLL and put it where it needs to go and the app should be happy.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  5. #5

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Re: [2005] Compiling a DLL without compiling associated Apps?

    Thanks Tech!
    Blake

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