Results 1 to 3 of 3

Thread: Compiling a binary compatiable dll

  1. #1

    Thread Starter
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    How many other projects use this DLL? If it is only a couple, than it shouldn't be a big deal to simply recompile them with the new version.
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  2. #2
    jim mcnamara
    Guest
    You messed up the original interface by adding something new to it.

    If you want to modify something with bninary compatibility on - try something like this:
    Code:
    'old code section
    implements interface1  ' old interface name
    ' existing old code
    ' put new code below
    implements interface2 ' create a seconde version od the interface
    ' put the new stuff - properties, methods or any changes down here

  3. #3
    joan_fl
    Guest
    Try recompiling everything that this object referances. Then come back to this project.. Un referrance everything. Then rereferance them again.

    OR you can compile withOUT binary compatibility, hten come back in and compile again BUT with binary compatibility.

    Hope this helps,

    Joan

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