lvi is of type ListViewItem. I think you need to set this on the object that is of type ListViewItem.ListViewSubItem. The Add method you are callingwill returns the instance you're looking for!
Thanks BinaryCoder. I believe I was setting ListViewItem.ListViewSubItem.Add method in my second line of my code:
lvi.SubItems.Add(balance.ToString(), Color.Red, Color.White, new Font(FontFamily.GenericSansSerif, 12.0F, FontStyle.Bold));
I used the 3rd constructor provided. The first 3 parameters are pretty straight forward. I'm guessing it's the 4th paramenter with stipulating the Font that might be making my code not work.
Can anyone help with this?
Can anyone confirm that it is possible to have different subitems be different colors when they are in the same row?