The word you are looking for is 'please'
an example
#include <GUIConstants.au3>
#include <GuiListView.au3>
;create form
;whlt
$Form1 = GUICreate("AForm1", 370, 270, 193, 115)
;create listview
;ltwh
$ListView1 = GUICtrlCreateListView("000000|111111|222222222222222", 10, 10, 350, 250)
;set to alternate the colors
GUICtrlSetBkColor($ListView1, $GUI_BKCOLOR_LV_ALTERNATE)
;insert item
$ListView1_0 = GUICtrlCreateListViewItem("aaa|111|nononono", $ListView1)
;set alternate color
GUICtrlSetBkColor(-1, 0xffff00)
$ListView1_1 = GUICtrlCreateListViewItem("bbb|222|yes", $ListView1)
;set alternate color
GUICtrlSetBkColor(-1, 0xffff00)
$ListView1_2 = GUICtrlCreateListViewItem("ccc|333|nononono", $ListView1)
;set alternate color
GUICtrlSetBkColor(-1, 0xffff00)
;resize the columns to header
_GUICtrlListViewSetColumnWidth ($listview1, 0, $LVSCW_AUTOSIZE_USEHEADER)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
It took me a while to figure it out too.