Ask a Question related to ASP Components, Design and Development.
-
C #1
Binary Compatibility
Hi,
Am new to world of COM.
When I compile COM DLL's what is teh fifference between
having theh dll as Binary Compatible as opposed to
Project Compatible?
Thanks,
C.
C Guest
-
binary compatibility between different versions of MySQL?
OK, what is supposed to happen in this situation? We have a mysqldump of a database. We restore it on two different mysql servers, one running... -
Binary woes!
Hi, I'm recieving a base64encoded string (png file) from a webservice. I'm trying to write the file and output the image. But I'm having... -
binary data
Greets, Register globals are to OFF - however the files will not upload. Thanking all in advance. TR ............... <? if ($submit) { -
CGI php Binary
Hi; I appologize in advance to purists who think the question is an appache one, or a mysql question. I have a virtual domain hosted by... -
64 bit binary and 32 bit binary have different result. Is it library bug or compiler bug?
#include <errno.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <dirent.h> #include <assert.h> int main(int argc, char... -
solex #2
Re: Binary Compatibility
[url]http://www.visibleprogress.com/vb_binary_compatibility.htm[/url]
"C" <c@nospm.com> wrote in message
news:0a8801c33fc5$fa7ae0d0$a101280a@phx.gbl...> Hi,
>
> Am new to world of COM.
>
> When I compile COM DLL's what is teh fifference between
> having theh dll as Binary Compatible as opposed to
> Project Compatible?
>
> Thanks,
> C.
solex Guest
-
Adrian Forbes [ASP MVP] #3
Re: Binary Compatibility
> When I compile COM DLL's what is teh fifference between
Ignore project compatibility and only use no compat or binary compat.> having theh dll as Binary Compatible as opposed to
> Project Compatible?
Binary compatibility means that you can compile your dll, then change the
code in it and re-compile the dll and any apps that reference your dll will
still work....ie it has maintained its identity. If you remove
compatibility then you get new guids etc created for your component and any
apps that need to use it need re-compiled against the new version of the
dll.
However...that is for any app that uses early binding. ASP uses VBScript
which can only use late-binding so, to be honest, it doesn't matter what
compatibility your dll has if it is only being called from ASP. Given that
no compatibility gives you no problems I'd use that if your dll is only
being used from asp.
Adrian Forbes [ASP MVP] Guest



Reply With Quote

