I have a simple windows form that has a COM user control. This COM user control has method "GetNode" COM methods. I want to test this function call using autohotkey.
Run "C:\AHC_Exploring\Project1.exe"
WinWaitActive, Form1, , 2
if ErrorLevel
{ MsgBox, WinWait timed out.
return
}
ObjUerControl := ; // Need to know correct get COM object method
lResult = Object.GetNodeId(2)
MsgBox %lResult%
Return