hello guys, some1 can help ?
I read a byte from a file, and convert to hex,
now i got: 20 03
i want to invert it to 03 20
understand?
how can I do it'?
thank u
Printable View
hello guys, some1 can help ?
I read a byte from a file, and convert to hex,
now i got: 20 03
i want to invert it to 03 20
understand?
how can I do it'?
thank u
Just 4 chars? theString = Right$(theString, 2) & Left$(theString, 2)
Dim theString As String
theString = "2003"
theString = Right$(theString, 2) & Left$(theString, 2)
MsgBox theString
it resolvs my problem, thank you!