Hi Guys,
I am writing an app that involves a list view with for example 100 rows. I have added an input box and search button to search the list view for whatever was in the input box.
I found this function on the forum:
Button2()
Func Button2()
;MsgBox(0, "Button2", GUICtrlRead($Input))
$value = GUICtrlRead($Input)
; Search for target item
$iI = _GUICtrlListView_FindInText($ListView1, $value, -1)
_GUICtrlListView_EnsureVisible($ListView1, $iI)
EndFunc
This works to a degree but onl