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