Hi Al,
I made it like this:
Private Sub listView_MouseMove(ByVal sender As Object, ByVal e As
System.Windows.Forms.MouseEventArgs) Handles listView.MouseMove
Dim lvi As ListViewItem
Dim loc As Point
lvi = listView.GetItemAt(e.X, e.Y)
If lvi Is Nothing OrElse lvi.Tag.trim = "" Then
tooltip.RemoveAll()
Else
tooltip.SetToolTip(listView, lvi.Tag)
End If
End Sub
I stored the text for the tooltip of the istViewItem in the .Tag
property before.
Thomas
[quoted text, click to view] "Al" <ayurov@mail.ru> wrote in message news:<069801c36551$bc67ee30$a101280a@phx.gbl>...
> Hi!
> How can I add tooltip for subitems of listview when text