thx! for all Erel
Now I will like to do the opposite (float to hex), but it does not work
I use the same as you metode
I did not find other example on the forum
Sub Activity_Create(FirstTime As Boolean)
Log(FloatToHex(-1258.25))
End Sub
Sub FloatToHex(Fl As Float) As String
Dim bc As ByteConverter
Return bc.HexFromBytes(bc.FloatsToBytes(Fl)(0))