sorom Member Licensed User Longtime User May 15, 2014 #1 hi erel I have a problem with string variables, string define myself when I assign a numeric value changes the variable type to int
hi erel I have a problem with string variables, string define myself when I assign a numeric value changes the variable type to int
Reviewnow Active Member Licensed User Longtime User May 15, 2014 #2 This should work B4X: if isnumber(tcliente.text) = true then cliente = numberformat(tcliente.text,0,0) else cliente = tcliente.text end if Upvote 0
This should work B4X: if isnumber(tcliente.text) = true then cliente = numberformat(tcliente.text,0,0) else cliente = tcliente.text end if
Erel B4X founder Staff member Licensed User Longtime User May 15, 2014 #4 This is not a problem. The debugger shows the hexadecimal values of numbers. Even if the numbers are stored in strings. You can disable it under Tools -> IDE Options. BTW, why do you use the legacy debugger instead of the rapid debugger? Upvote 0
This is not a problem. The debugger shows the hexadecimal values of numbers. Even if the numbers are stored in strings. You can disable it under Tools -> IDE Options. BTW, why do you use the legacy debugger instead of the rapid debugger?