Thanks for your reply Erel,
Can richstring be used with arrays e.g.:
My code sample:
Dim stringarray() As String
stringarray = Array As String("string1","string2","string3")
Code from sample/forum:
Dim rsb As RichStringBuilder
Dim rs As RichString
rs.Initialize("{C1}Me{C1}" & CRLF & "{C2}You{C2}" & CRLF)
rs.Color2(Colors.Red, "{C1}")
rs.Color2(Colors.Blue, "{C2}")
rsb.Append(rs)
EditText1.Text = rsb
How can I put the richstring into the array before I use the array in my program so the formatting is ready before I need it in say an edittext?
Is it something like stringarray (0) = rsb .... then I have do this for each array entry?
Any help is welcome