COM Wrappers
From AutoHotkey
COM is a platform-independent, distributed, object-oriented system for creating binary software components that can interact. COM is the foundation technology for Microsoft's OLE (compound documents) and ActiveX® (Internet-enabled components) technologies, as well as others.
COM objects can be created with a variety of programming languages. Object-oriented languages, such as C++, provide programming mechanisms that simplify the implementation of COM objects. These objects can be within a single process, in other processes, even on remote machines.
COM is designed primarily for C++ and Microsoft Visual Basic® developers.
From version 1.0.46.08 (Februrary 7, 2007) it is possible to create COM wrappers in AutoHotKey using improved DllCall and knowing details about COM internal architechture. The purpose of this place is to provide some COM wrappers so to be able to use COM inside AHK as easy as in other popular scripting languages with COM support.
[edit] Scripts
- ADO by Sean
- Create System Restore Point via WMI by Sean
- Set Wallpaper by Sean
- Start/Stop/Query Services by olfen
[edit] Wrappers
- COM by Sean This library should be used instead of CoHelper which is no longer maintained
- COHelper - Helper Functions required by other scripts by Sean
- Internet Explorer Control by Sean
- Text To Speech by foom
