Bug? [B4I AND B4A]chinese punctuation ":" cann't show

shugeyi

Member
Licensed User
Longtime User
EREL: hello
in b4a and b4i IDE ,the chinese punctuation like ": ? ," can not show , it's show a "?" ,
but in version b4a 4.x ,have not this bug ,
by the way ,i use window 10, i don't know whether have this bug in win7 or win8
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
I've tried it with this code:
B4X:
Sub Activity_Create(FirstTime As Boolean)
   Dim s As String = ": ? ,"
   Log(s)
   For i = 0 To s.Length - 1
     Log(Asc(s.CharAt(i)))
   Next
End Sub
It seems to work correctly.

SS-2015-09-30_07.55.55.png
 
Top