Eric Lavitsky
Eric Lavitsky

Reputation: 151

How to create ActiveX DLL in Visual C++

Is there a tutorial/reference for creating an ActiveX DLL in Visual Studio 2008 C++ ?

I've got a DLL built with the DLLRegisterServer/UnregisterServer, and it's registered, but I'm having a little trouble figuring out what name to use to reference it (from a vbscript) and how to make sure my functions are exported correctly. Do I have to put my functions in a special class?

Thanks!

Upvotes: 5

Views: 6764

Answers (3)

Eugene
Eugene

Reputation: 3437

+1 to nobugz

how to make sure my functions are exported correctly

Visual Studio contains OleView.exe. You can open your dll from it and see the list of props and methods.

As for tutorial, check here: ATL Concepts

Upvotes: 0

Hans Passant
Hans Passant

Reputation: 942257

There are a lot of details to get right. Best thing to do is to use ATL and the built-in ATL object wizard. It auto-generates a bunch of files so that the IDL, type library, registration script, class wrapper and event proxies are all done correctly.

Upvotes: 2

Kyle Alons
Kyle Alons

Reputation: 7135

The component's ProgID is normally defined in the project's .rgs file.

Upvotes: 0

Related Questions