Gowri Sankar. J
October 29th, 1998, 02:01 AM
What's the physical level difference between Dll and Exe?
|
Click to See Complete Forum and Search --> : ActiveX Gowri Sankar. J October 29th, 1998, 02:01 AM What's the physical level difference between Dll and Exe? John Schroder November 17th, 1998, 11:46 AM >What's the physical level difference between Dll and Exe? When you run an activeX control that is in a Dll. that control is "inprocess" to the program that is using it. Thus access is relatively fast. It also in general shares the threads of the calling program (I believe). When you are running an activeX control that is in an exe. Then the control is out of process. This means that the program that called the activeX control is sending messages to another process(program) that is the activeX controls code. This is much slower than a dll. However the exe has its own (possibly multiple) threads to do its processing. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |