HI,
I try to convert hex code to decimal but it have problem :
java.lang.NumberFormatException: For input string: "FB461E4D"
my code is
Any solution for this, Thanks
I try to convert hex code to decimal but it have problem :
java.lang.NumberFormatException: For input string: "FB461E4D"
my code is
B4X:
Dim str As String = "FB461E4D"
Dim lng As Long = Bit.ParseInt(str,16)
Log(lng)
Any solution for this, Thanks