Bug? Different Behavior in B4i Class_Globals

MrKim

Well-Known Member
Licensed User
Longtime User
The following line is interpreted correctly in B4A and B4J but in B4i the CHR() is ignored and the numbers in the CHR are simply concatenated to the string.
No error is thrown.
B4X:
Dim TestCrypt As String = $"t%yg&^${Chr(222)}${Chr(222)}${Chr(200)}${Chr(195)}"$
B4A, B4J - t%yg&^ÞÞÈÃ
B4I - t%yg&^222222200195

Correction - B4i seems to be completely ignoring CHR(). I tried to set the value in Sub Initialize and the result was the same:
1723135880922.png

B4i ver 8.30 (64bit)
 
Last edited:

aeric

Expert
Licensed User
Longtime User
no need to report this twice 🙁
 

MrKim

Well-Known Member
Licensed User
Longtime User
no need to report this twice 🙁
I apologize. That is my 76 year old memory at work. I completely forgot about this.
 

MrKim

Well-Known Member
Licensed User
Longtime User
The really sad part, for me, is I went through my whole troubleshooting procedure AGAIN ti figure out what was wrong.
The good new: With age comes acceptance - and patience.
 
Top