vecino Well-Known Member Licensed User Longtime User May 10, 2021 #1 Hello, how can it be done? I have tried several ways but it doesn't show anything. Thank you. B4X: Dim lb As Label lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A)
Hello, how can it be done? I have tried several ways but it doesn't show anything. Thank you. B4X: Dim lb As Label lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A)
M Mahares Expert Licensed User Longtime User May 10, 2021 #2 vecino said: I have tried several ways but it doesn't show anything. Click to expand... Why don't you use CSBuilder: B4X: Dim cs As CSBuilder Label1.Text = cs.Initialize.Append("Vecino ").Typeface(Typeface.FONTAWESOME).Append(Chr(0xF02A)).PopAll Upvote 0
vecino said: I have tried several ways but it doesn't show anything. Click to expand... Why don't you use CSBuilder: B4X: Dim cs As CSBuilder Label1.Text = cs.Initialize.Append("Vecino ").Typeface(Typeface.FONTAWESOME).Append(Chr(0xF02A)).PopAll
Erel B4X founder Staff member Licensed User Longtime User May 10, 2021 #3 These two lines are correct: B4X: lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A) The problem is somewhere else. Upvote 0
These two lines are correct: B4X: lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A) The problem is somewhere else.
Peter Simpson Expert Licensed User Longtime User May 10, 2021 #4 vecino said: B4X: Dim lb As Label lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A) Click to expand... You must be doing something seriously wrong as your code should work perfect. Upvote 0
vecino said: B4X: Dim lb As Label lb.Typeface = Typeface.FONTAWESOME lb.Text = Chr(0xF02A) Click to expand... You must be doing something seriously wrong as your code should work perfect.
Peter Simpson Expert Licensed User Longtime User May 10, 2021 #5 Darn it Erel, you got there before me Upvote 0
vecino Well-Known Member Licensed User Longtime User May 10, 2021 #6 Sorry, sorry... I was writing white on a white background ?? Upvote 0
Peter Simpson Expert Licensed User Longtime User May 10, 2021 #7 vecino said: Sorry, sorry... I was writing white on a white background ?? Click to expand... Really, no comment Upvote 0
vecino said: Sorry, sorry... I was writing white on a white background ?? Click to expand... Really, no comment