hello
I am building a chat client with a listbox
I want that each client will choose his own text color in the chat
I did it in this way:
void cc_ReadMsgEvent(MessageFormat card)
{
UpdateListBox(card.ToString());
listBox1.ForeColor = card.myColor;
}
However, when I do it, it changes the color of all the text in the listbox, and I want to change the color
only of one line each time. how can I do it ?
thank you
Loading
FroglegPosted May 14, 2011, 4:13 AM
Praveen KumarPosted May 14, 2011, 5:58 AM
Anil KumarPosted May 14, 2011, 5:57 AM
Anil KumarPosted May 14, 2011, 5:53 AM
Since you are working on chat screen, use lightweight ListBox. But if you are looking for appearance/style etc. then go for ListView.
gavriel ankriPosted May 14, 2011, 3:19 AM
gavriel ankriPosted May 14, 2011, 3:14 AM
can you show me how to change the color depending on what the user choosed ?
I mean how can I fit card.MyColor into this code ?
thank you!
VulpesPosted May 13, 2011, 9:05 AM
Anil KumarPosted May 13, 2011, 8:23 AM