Idov
Idov

Reputation: 5124

Building a COM component using VS2008 express

This may be a really stupid question but I can't seem to find how to create a C++ COM component using visual studio 2008 express.
Can somebody help me?

Upvotes: 0

Views: 415

Answers (1)

UnhandledExcepSean
UnhandledExcepSean

Reputation: 12804

In the project's settings, there are two things that I always set in VB.NET and C#:

  1. On the Application tab, click Assembly information and check the Make Assembly COM-visible
  2. On the Compile/Build tab, check the Register for COM interop

For C++: How do you create a COM DLL in Visual Studio 2008?

Upvotes: 1

Related Questions