PDA

Click to See Complete Forum and Search --> : Diff. in DLL and EXE


mahesh_575
May 9th, 2001, 08:00 PM
Please help me !
What is the Diff. in Activex DLL and EXE ???
and what are the marits of Activex EXE ???

Mahesh:o

TheBao
May 9th, 2001, 08:11 PM
DLL is in process, EXE is out of process

Regards,
TheBao

mahesh_575
May 9th, 2001, 08:27 PM
Can you explain it ??? I want exact diff. between these 2. Because here we are planning to use Act. EXE and we dont know the details. I haven`t used it before this.

TheBao
May 9th, 2001, 10:28 PM
ActiveX DLL:
An in-process server is an object that runs within the same process space as the client application that is calling it. If you want to use MTS, you have to use this one, since ActiveX EXE object can not. If you are going to use ActiveX DLL, make sure to select it as "Apartment Threaded"

ActiveX EXE:
An out-of-process server is an object that runs in its own process space. If it crashes for some reason, it doesn't take the client application down with it.

Hope this helps,
TheBao