Is there any way i can get to display the tool tip text for the user in the List View control ? Sam
samarthk
each list item has a tooltiptext property... so you could do something like this Code: Dim lst As ListItem Set lst = MyListView.SelectedItem lst.ToolTipText = "WHATS UP PEOPLE" this is just an example... but you could also add the tool tip text as you are actually adding the listitem to the listview
Dim lst As ListItem Set lst = MyListView.SelectedItem lst.ToolTipText = "WHATS UP PEOPLE"
Forum Rules