Hi oparra,
Now I understand why I could not make it run well before...after trying your test and analyzing my code (which was before your post).
My mistake was I am simply stupid and I post here for someone who may face the same like mine.
I change the size of fontawsome in
your code to 24 (instead of 64):
Dim cs As CSBuilder
cs.Initialize
cs.Size(22)
cs.Alignment("ALIGN_CENTER")
cs.Color(Colors.White)
cs.TypeFace(Typeface.FONTAWESOME)
cs.Append(Chr(0xF028))
cs.Append(CRLF)
cs.TypeFace(Typeface.DEFAULT)
cs.Size(14)
cs.Color(Colors.White)
cs.Append("This is a test CSBuilder")
cs.PopAll
UKspeaker.Text = cs
And suddenly I see the fontawsome text again becomes as small as other text ("This is a test CSBuilder").
But soon I found out that the issue is with FONTAWSOME the size 22 is too small for us to see the text size diffenrence, and why I can wrongly see that both are same size. If now I increase Fontawsome text to 30 or bigger, I can see the diffence.
So stupid I am ...
Once again thanks.