My code to select the SysListView32 is working fine:
string text = strings.au3.ControlListView(strings.TerminalName, "", "SysListView321", "SelectAll","","");
string text2 = strings.au3.ControlListView(strings.TerminalName, "", "SysListView322", "SelectAll", "", "");
I want to get the rows of the SysListView32. I tried GetText
but it is always returning 0.
string Aaasa = strings.au3.ControlListView(strings.TerminalName, "", "SysListView321", "GetText", "", "");
string Aaasa = strings.au3.ControlListView(strings.TerminalName, "", "SysListView322", "GetText", "", "");
Is there any way I can use AutoIt to get all the rows (Ex-the last tradetime, %change, volume, symbol). I need to fetch data from the 2 lists in the application simultaneously every second.
from AutoItX.chm
You should provide integeres not string as a 5th and 6th parameters
After comment I think it should look like: