listctrl如何选中加亮

listctrl怎么选中加亮啊
m_listCtrl.SetItemState(0, LVIS_SELECTED|LVIS_FOCUSED, LVIS_SELECTED|LVIS_FOCUSED);

我用这段代码让第一项选中加亮,怎么没效果呢?
------解决方案--------------------

// Set the selection mark to the first item only if no other item is 
// selected.
if (m_myListCtrl.GetSelectionMark() == -1)
   m_myListCtrl.SetSelectionMark(0);

------解决方案--------------------
LVS_EX_FULLROWSELECT 
Version 4.70. When an item is selected, the item and all its subitems are highlighted. This style is available only in conjunction with the LVS_REPORT style.