Hi there, I need to highlight ListView item, so even when the ListView is not focused, the user will be able to see *clearly* the selected item. This is what i am trying: #include <GuiConstants.au3> #include <GuiListView.au3> $GUI = GUICreate("Test Script", 300, 230) $ListView = GUICtrlCreateListView("Column", 20, 10, 260, 160) For $i = 1 To 5 GUICtrlCreateListViewItem("Item " & $i, $ListView) Next $Highlight_Button = GUICtrlCreateButton("Highlight", 20, 190, 60, 20) $Cl