Based this code i store a value of item in column1 in a clipboard...
but i nned to store the value only if i click a left button of mouse,..
but i nned to store the value only if i click a left button of mouse,..
Code:
Private Sub LVMENU_ItemClick(ByVal Item As MSComctlLib.ListItem)
RM = Empty
RM = Me.LVMENU.SelectedItem.Index
STRINGA = Me.LVMENU.ListItems(RM).ListSubItems(1).Text
Clipboard.SetText STRINGA
Me.LERRORI.Caption = "NOME SERVIZIO COPIATO IN MEMORIA!"
DoEvents
Sleep (1500)
Me.LERRORI.Caption = ""
End Sub