I have been working on a app and currently have got it working the user can set there font color so i want when the user sends the text it also send the color as well

heres the code i use to collor the text

vb Code:
  1. Private Sub DisplayT(ByVal text As String)
  2.         Dim sto As String
  3.         sto = "You say: "
  4.  
  5.  
  6.  
  7.  
  8.         Dim selectionStart As Integer = txtDisplay.TextLength
  9.  
  10.         txtDisplay.AppendText(sto)
  11.         txtDisplay.SelectionStart = selectionStart
  12.         txtDisplay.SelectionLength = sto.Length
  13.         txtDisplay.SelectionColor = Color.Green
  14.         stoco(text)
  15.     End Sub
  16.     Sub stoco(ByVal text As String)
  17.  
  18.  
  19.  
  20.         Dim selectionStart As Integer = txtDisplay.TextLength
  21.  
  22.         txtDisplay.AppendText(text)
  23.         txtDisplay.SelectionStart = selectionStart
  24.         txtDisplay.SelectionLength = text.Length
  25.         txtDisplay.SelectionColor = txtSend.ForeColor
  26.  
  27.         txtDisplay.AppendText(Environment.NewLine)
  28.  
  29.  
  30.     End Sub

and heres the code i use to send the text to the server

vb Code:
  1. If txtSend.Text <> "" Then
  2.             DisplayT(txtSend.Text)
  3.             SendData("CHAT|" & txtSend.Text)
  4.             txtSend.Text = ""
  5.         End If

vb Code:
  1. Public Sub SendData(ByVal data As String)
  2.         Dim writer2 As New IO.StreamWriter(client.GetStream)
  3.         writer2.Write(data & vbCr)
  4.         writer2.Flush()
  5.     End Sub