zoukankan      html  css  js  c++  java
  • Automation Clients

    Automation Clients

      Automation makes it possible for your application to manipulate objects implemented in another application, or to expose objects so they can be manipulated. An automation client is an application that can manipulate exposed objects belonging to another application. The application that exposes the objects is called the Automation server. The client manipulates the server application’s objects by accessing those objects’ properties and functions.

      There are two types of Automation clients:

    • Clients that dynamically (at run time) acquire information about the properties and operations of the server.

    • Clients that possess static information (provided at compile time) that specifies the properties and operations of the server.

      Clients of the first kind acquire information about the server’s methods and properties by querying the OLE system’s IDispatch mechanism. Although it is adequate to use for dynamic clients, IDispatch is difficult to use for static clients, where the objects being driven must be known at compile time. For static bound clients, the Microsoft Foundation classes provide the class along with ClassWizard support.

      Static bound clients use a proxy class that is statically linked with the client application. This class provides a type-safe C++ encapsulation of the server application’s properties and operations.

      The class COleDispatchDriver provides the principal support for the client side of Automation. Using ClassWizard, you create a class derived fromCOleDispatchDriver.

      You then specify the type-library file describing the properties and functions of the server application’s object. ClassWizard reads this file and creates theCOleDispatchDriver-derived class, with member functions that your application can call to access the server application’s objects in C++ in a type-safe manner. Additional functionality inherited from COleDispatchDriver simplifies the process of calling the proper Automation server.

  • 相关阅读:
    hdu 1978 How many ways
    hdu 2209 翻纸牌游戏
    hdu 2149 Public Sale (博弈规律题)
    CF 353C Find Maximum #205 (Div. 2)
    barrier and Fence
    window coordinate
    GPU hang
    the application was unable to start correctly 0xc000007b
    vertex buffer 数据结构 如何读vb的memory pool
    map
  • 原文地址:https://www.cnblogs.com/tekkaman/p/2585346.html
Copyright © 2011-2022 走看看