What is the correct way to clear a ListView GUI? To clear a List GUI I use GUICtrlSetData($list, "") and my list is empty and ready to refill.
I am stumped on how to do a listview. The best I have come up with so far is to delete the control and recreate it.
GUICtrlDelete($listview)
$listview = GUICtrlCreateListView("text",$x,$y)
Having to do that makes me fill like I am missing something.