Results 1 to 2 of 2

Thread: ListView

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Nov 2001
    Location
    Bangalore
    Posts
    25

    ListView

    Is there any way i can get to display the tool tip text for the user in the List View control ?

    Sam
    samarthk

  2. #2
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width