vote up 2 vote down star
3

I put "better" in quotes because it's a qualitative question. I've been writing COM DLLs for a couple of years now and have only recently come upon, and successfully used, the standard DLL with Typelib concept.

Are there any compelling reasons to use COM DLLs instead of DLL+Typelib? Granted, you can't do DCOM with a DLL+Typelib, but is that the only reason?

EDIT I've written COM DLLs in Visual C/C++ 6, Compaq Visual Fortran, Delphi, Visual BASIC 6, ActiveState Perl and a few others. I've written standard DLLs in Visual C/C++ 6, Delphi, Ada and a few others. I've written typelibs for some of my own standard DLLs and also for third party DLLs. The question was originally written in the context of a Delphi DLL+Typelib reimplementation of a VB6 original.

flag

What language are you writing these in? Is it c++? – Scott Langham Oct 11 '08 at 15:52

2 Answers

vote up 2 vote down check

TypeLib's are also important if you ever wish to migrate COM components to managed code in the future. Or have managed code interact with the COM components.

With a typelib there are lots of tools which will automagically translate your COM signatures into .Net interfaces and types. This can be done by hand but with a large project it's certainly a huge time saver.

link|flag
Typlib's predate .NET by a long time -- they are used in a lot of other environments, for example VB and in some cases even C++/ATL – Rob Walker Oct 11 '08 at 16:20
vote up 0 vote down

It really depends on the clients of the component I would think.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.