But I DO NOT want to use the selected item!
OK, this is the code I use:
1. In the General section
Private lst As ListItem
2. In the MouseMove event
Set lst = lv.HitTest(x , y)'lv - the ListView control
3. In The DoubleClick event
If Not lst is Nothing Then
'My code here
End If