При использовании _GUICtrlListView_SetItemParam перестает работать GUICtrlSetBkColor. Как бы заменить цвет строки?
Код:
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
Opt('MustDeclareVars', 1)
Global $hListView
GUICreate("ListView Set Item Param", 400, 300)
$hListView = GUICtrlCreateListView("Items", 2, 2, 394, 268)
GUICtrlCreateListViewItem("Item 1",$hListView)
GUICtrlCreateListViewItem("Item 2",$hListView)
_GUICtrlListView_SetItemParam($hListView, 1, 1234)
GUICtrlSetBkColor (1234, 0x00FF00 )
GUICtrlCreateListViewItem("Item 3",$hListView)
GUISetState()
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()