Few similarities I know..
Both cannot execute by themself. It needs some program to instantiate it.
COM DLL & ActiveX controls are platform independant. (is it so...?)
Both requires to support the interface
IUnknown
and exposes three methodsQueryInterface
,AddRef
, andRelease
.It also requires to be registered before using and un-registered after done with it.
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?