Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / General / December 2005

Tip: Looking for answers? Try searching our database.

Listview font color

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Kay - 23 Dec 2005 05:44 GMT
Hi all,

I have a listview to display data from a datareader, while theReader is
lopping, how do I change the font color(for the whole row) depending on a
value of a column?

I'm trying to do something like this: (obviously it's not working...)

          Do While theReader.Read
               itmx = New ListViewItem
               itmx.Text = (theReader("Cancel"))
               If theReader("Cancel") = "Y" then
                   itmx.ForeColor.Green     '<----------
               else
                   itmx.ForeColor.Black     '<----------
               end if
               lvwRoster.Items.Add(itmx)
          Loop

Thanks!

Kay
Kyle Burmark - 30 Dec 2005 22:48 GMT
Try something like this

           Do While theReader.Read
               itmx = New ListViewItem
               itmx.Text = (theReader("Cancel"))
               If theReader("Cancel") = "Y" then
                   itmx.ForeColor.Green     '<----------
                else
                    itmx.ForeColor.Black     '<----------
                end if

              itmx.UseItemStyleForSubItems = true; //look here, do this or
else loop through the item's subitems and set each one's forecolor

               lvwRoster.Items.Add(itmx)
          Loop

> Hi all,
>
[quoted text clipped - 18 lines]
>
> Kay

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.