I did not find a native procedure to retrieve the index of the column, the info that is here:
ListView1.ListItems.Item (ListView1.SelectedItem.Index) .ListSubItems (HERE)
I know how to get the index of the line like this:
ListView1.SelectedItem.Index
I know how to recover the position of the mouse like this:
Private Sub ListView1_MouseUp (ByVal Button As Integer, ByVal Shift As Integer, _
ByVal x As stdole.OLE_XPOS_PIXELS, _
ByVal y As stdole.OLE_YPOS_PIXELS)
I think it should be possible to find this index. Thank you in advance for your help.