Akaanthan Ccoder
Akaanthan Ccoder

Reputation: 2179

Difference between COM DLL and ActiveX control

Few similarities I know..

But how are they different? Can someone please list it down?

Also my understanding is ActiveX controls are OLE custom controls (OCX). I have heard of terms like ActiveX DLLs. Is it another form of ActiveX control or something different?

Upvotes: 16

Views: 13213

Answers (1)

Jordan Parmer
Jordan Parmer

Reputation: 37174

ActiveX is a flavor of COM. COM+, OLE, and DCOM are also flavors of COM. COM just means Component Object Model. An ActiveX object is just an OLE object that supports IUnknown.

COM is a system-level standard and provides model services to facilitate the construction of higher-level functionality. OLE and ActiveX are high-level services built on top of the COM foundation. COM, ActiveX, and OLE are very similar in nature but ActiveX and OLE provide more application-level features.

Upvotes: 25

Related Questions