Skip to content

Latest commit

 

History

History
49 lines (45 loc) · 1.51 KB

File metadata and controls

49 lines (45 loc) · 1.51 KB
title Active Technology and DLLs | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
dev_langs
C++
helpviewer_keywords
in-process server DLLs
Automation [C++], DLLs
DLLs [C++], Active Technology
Active technology [C++]
MFC DLLs [C++], Active Technology
ms.assetid 3ed27f8d-164a-4562-ad61-9f2333404cc7
caps.latest.revision 7
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

Active Technology and DLLs

Active technology allows object servers to be completely implemented inside a DLL. This type of server is called an in-process server. MFC does not completely support in-process servers for all the features of visual editing, mainly because Active technology does not provide a way for a server to hook into the container's main message loop. MFC requires access to the container application's message loop to handle accelerator keys and idle-time processing.

If you are writing an Automation server and your server has no user interface, you can make your server an in-process server and put it completely into a DLL.

What do you want to know more about?

See Also

DLLs in Visual C++