Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:com:start [2024-01-16 16:36] – Fix up some wording geek | guides:com:start [2025-03-26 12:36] (current) – [IDispatch Objects] Demote header level geek | ||
---|---|---|---|
Line 72: | Line 72: | ||
Therefore, the indexes of the IDispatch methods in the vtable start '' | Therefore, the indexes of the IDispatch methods in the vtable start '' | ||
+ | |||
+ | ===== IDispatch Objects ===== | ||
+ | |||
+ | The IDispatch interface is Microsoft' | ||
+ | |||
+ | * (Optional) GetTypeInfoCount - Get the count of " | ||
+ | * (Optional) GetTypeInfo - Get a list of TypeInfo entries that describe object properties | ||
+ | * GetIDsOfNames - Turns text names into property IDs at run-time | ||
+ | * Invoke - Accesses a property by ID, either retrieving, setting, or calling the property as a method | ||
+ | |||
+ | From these four methods, IDispatch allows rigidly structured languages like C++ to create or access free-form objects where the properties may not all be known at compile time. AutoHotkey itself uses IDispatch as the basis for all its objects, and handles accessing IDispatch properties transparently with regular object syntax. | ||
+ | |||
+ | <tabbox Native Syntax> | ||
+ | |||
+ | <code autohotkey> | ||
+ | #Requires AutoHotkey v2 | ||
+ | |||
+ | ; Retrieve a WScript.Shell IDispatch object using its human-readable ProgID. | ||
+ | ; You could also specify CLSID " | ||
+ | shell := ComObject(" | ||
+ | |||
+ | ; This call first invokes GetIDsOfNames to convert " | ||
+ | ; then it calls Invoke with that ID, specifying this should be a method call | ||
+ | ; with the given parameter " | ||
+ | shell.Exec(" | ||
+ | </ | ||
+ | |||
+ | <tabbox ComCall Syntax> | ||
+ | |||
+ | <code autohotkey> | ||
+ | #Requires AutoHotkey v2 | ||
+ | |||
+ | ; Retrieve a WScript.Shell IDispatch object using its human-readable ProgID. | ||
+ | ; You could also specify CLSID " | ||
+ | shell := ComObject(" | ||
+ | |||
+ | name := " | ||
+ | arg1 := " | ||
+ | |||
+ | ; Retreive the ID for method " | ||
+ | IID_NULL := Buffer(16, 0) | ||
+ | names := Buffer(A_PtrSize * 1, 0) | ||
+ | NumPut(" | ||
+ | ids := Buffer(16 * 1, 0) | ||
+ | ComCall(5, ComObjValue(shell), | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | ) | ||
+ | execId := NumGet(ids, " | ||
+ | |||
+ | ; Stage the arguments for the call | ||
+ | args := Buffer((8+A_PtrSize*2) * 1, 0) ; one argument | ||
+ | NumPut( | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | args | ||
+ | ) | ||
+ | dp := Buffer(A_PtrSize*2+8, | ||
+ | NumPut( | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | dp | ||
+ | ) | ||
+ | |||
+ | ; Call " | ||
+ | res := Buffer((8+A_PtrSize*2) * 1, 0) ; one result | ||
+ | ComCall(6, ComObjValue(shell), | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | ) | ||
+ | </ | ||
+ | |||
+ | </ | ||
---- | ---- |