hi,
I was wondering is there any way to remove items focus rectangle in listview, but leave selection rectangle?
I was wondering is there any way to remove items focus rectangle in listview, but leave selection rectangle?
set focus on another object seems to me the most easy way to do this
Using LVM_SETITEMSTATE. In the LVITEM argument, specify LVIS_FOCUSED for the stateMask and 0 for the state.
Oh yes LVM_SETITEMSTATE. I obviously hadn't searched the msdn enough..
Thanks.
Thanks.