I want to grab the content from a List
Windows Spy detects this list as the following:
ClassNN: WindowsForms10.Window.8.app.0.687911a6
I've been trying to grab the content from the List with AutoHotkey but it failed:
Code:
WinGet, application_window, , Found Data
ControlGet, var_count, List, Count , WindowsForms10.Window.8.app.0.687911a6, ahk_id%application_window%
if ErrorLevel
MsgBox There was a problem. Errorlevel: %ErrorLevel%
else
MsgBox, test count: %var_count%
MsgBox, %var%
==> this code gives "There was a problem. Errorlevel: 1"
I came across this topic:
"ControlGet List doesn't work with .NET Windows.Forms" -
http://www.autohotkey.com/forum/topic50654.html
It seems ( with my limited knowledge ) that i'm suffering from the same problem.
Does anyone know what the real problem is?
Can someone help me with getting the content from the list of this program?
I've been looking around for a long time now and i don't really know what to do next.