vote up 6 vote down star
3

Is there a good book or website with a basic introduction to COM programming?

I am using C++, but I am hoping for a good overview.

flag

6 Answers

vote up 5 vote down check

The following are good books on COM:

  • Essential COM by Don Box (here on Amazon), as mentioned by Lou Franco
  • Inside OLE by Kraig Brockschmidt (here on Amazon)

There are also a couple of old MSJ articles worth reading, also by Kraig Brockschmidt:

link|flag
vote up 2 vote down

I found this the most helpful. Surpised no one has listed it alt text

link|flag
Please update this answer to include "Inside COM" as text. This way the answer is searchable! By the way, this book gets my vote - I bought this in 1997 and sill reference it today (damn legacy code). – Aardvark Oct 1 '08 at 14:32
vote up 2 vote down

Another classic is the "ATL Developer's Guide" by Armstrong. I typically recommend using ATL for COM development. Use another book to understand the basics of COM and then come to this one to get a great overview of what ATL has to offer to ease COM development. Granted, it is a bit dated, but the information is still relevant (I mean it is COM after all).

link|flag
vote up 2 vote down

Essential COM is good. There are a bunch of good tutorials on Codeproject that help demystify it. Here are a few links:

Hope these help!

Edit: Those links are articles about the basics of COM, which is pretty low-level stuff. It's good to understand, though, because if you get into more complicated things, like ATL, you'll be very confused if you have no idea what, say, IUnknown is, or what a class ID means.

link|flag
vote up 1 vote down

An old one, called 'Understanding ActiveX and OLE' is a better beginner's guide than Box's book. It's out of print now but you can get secondhand ones of Amazon.com for a song.

link|flag
vote up 4 vote down

I think the Don Box book, Essential COM, is necessary at some point. It starts out slow, but gets advanced pretty fast.

What language?

link|flag

Your Answer

Get an OpenID
or

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