Is there a quicker way to select an item in an external listview? (see code inside)
VB Code:
With myLVitem
.mask = LVIF_STATE
.state = &HF
.stateMask = LVIS_SELECTED Or LVIS_FOCUSED
End With
dmWriteProcessData lvItemPointer, VarPtr(myLVitem), Len(myLVitem)
apiResult = SendMessage(lvWindow, LVM_SETITEMSTATE, 1, lvItemPointer)
is what im currently using to select the item.. but the thing is i have to use SendMessage multiple times to select multiple items.. is there a way to select multiple items using only one sendmessage call?
Re: Is there a quicker way to select an item in an external listview? (see code inside)
yeh i would like to see the code too please
Re: Is there a quicker way to select an item in an external listview? (see code inside)
im also interested the way you select the item VaxoP, would you share the code ?
Re: Is there a quicker way to select an item in an external listview? (see code inside)
I am intrested in the same code. could u share it . Furthermore, how to hightlight the first item in the listview?Thanks