Results 1 to 2 of 2

Thread: Creating a DLL. Solution?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 1999
    Location
    Brossard, Québec, Canada
    Posts
    241

    Post

    Hi. I developped an application and installed it on different computers. Now I have a problem. I would have to change some part of my coding at about every 5 months. Of course, I would like to do only some kind of 'updates' to my application. The first idea I had is to use a DLL. I never used DLLs and I want to make sure I'm going the right way.

    Let's say I have one function that may need updates regularly. I would put that function in my DLL. Afterwards, I could simply build a new DLL with the updated function and overwrite the old DLL on every machines.

    Can someone tell me if the idea is any good?

    If so, where can I find complete documentation on building a DLL, including my different fuctions?

    Thanks a lot

    David Laplante

  2. #2
    Addicted Member
    Join Date
    Jan 2000
    Location
    Oshkosh, WI
    Posts
    163

    Post

    What you want to build is a class library and then compile it into a DLL. As you make changes to the underlying classes you will be able to do want you want as long as you don't break compatibility In other words don't delete methods or properties or change calling parameters. You might want to read the version compatibility section of the help file. As to building dll, I suggest you find a good book on building classes, there is number of them out there.

    Good Luck

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