Hi,
I have multi column scroll lists created using GRIT library in 1 of C++ projects.
The controls that are created using GRIT are prefixed with ''Gw'".
So, the class name for this list view is "GwDrawableScrollObject".
Using AutoIt i can get the handle of this control.
however, i cannot fetch GetItemCount etc.
$ListBoxHandle = ControlGetHandle($windowtitle, $windowtext, $listboxcontrol)
MsgBox($MB_SYSTEMMODAL, "Information", "List handle: " & $ListBoxHandle)
MsgBox($MB_SYSTEMMODAL, "Information", "Item Count: " & _GUICtrlListView_GetItemCount($ListBoxHandle))
Any help is highly appreciated.
Thanks in Advance.