Results 1 to 4 of 4

Thread: Listview Help

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2005
    Location
    Bulawayo, Zimbabwe
    Posts
    576

    Listview Help

    Can anyone help - Is it possible to have list items within a list view shown in different colours and/or in bold.

    ie. Item 1 ="This Entry is Red and Is in Boldface"
    Item 2 ="This entry is black in normal text"

    etc.
    I am trying to replicate a telephone book where the main entry is in bold and may be coloured either red or black, consecutive entries are normal text and are black.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Listview Help

    Martin Liss, Post #4, here

  3. #3
    Junior Member
    Join Date
    May 2006
    Posts
    28

    Re: Listview Help

    Quote Originally Posted by KenBZim
    Can anyone help - Is it possible to have list items within a list view shown in different colours and/or in bold.

    ie. Item 1 ="This Entry is Red and Is in Boldface"
    Item 2 ="This entry is black in normal text"

    etc.
    I am trying to replicate a telephone book where the main entry is in bold and may be coloured either red or black, consecutive entries are normal text and are black.

    I think this may work:

    VB Code:
    1. 'first Add ColumnHeaders, then add listitems
    2. 'lv used below is a ListView
    3. Dim ItemX As ListItem
    4. dim iItemNum     'Number you try to add
    5. iItemNum=100
    6. Dim j
    7. For i = 0 To iItemNum - 1
    8.     Set ItemX = lv.ListItems.Add
    9.    
    10.     ItemX.Text = "Number " & Cstr(i)
    11.    
    12.     if i mod 2 =0 then
    13.         ItemX.Bold = True
    14.         ItemX.ForeColor = vbBlue
    15.     else
    16.         ItemX.Bold=False
    17.         ItemX.ForeColor=vbBlack
    18.     end if
    19.     'Add ListSubItems
    20. Next

    It may work

  4. #4

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2005
    Location
    Bulawayo, Zimbabwe
    Posts
    576

    Re: Listview Help

    Thanks I will try that

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