I am using this code, and am getting this error.
If Len(txtESNdec) = 18 Then
left10 = Left([txtESNdec], 10)
right8 = Right([txtESNdec], 8)
hexleft = Hex(left10)
hexright = Hex(right8)
hex_number = Format(hexleft, "00000000") & Format(hexright, "000000")
Me.txtESNhex =...
Have a quick question.
Here is a code I am using to convert decimal serial numbers into Hex.
Private Sub txtESNdec_AfterUpdate()
left3 = Left([txtESNdec], 3)
right8 = Right([txtESNdec], 8)
hexleft = Hex(left3)
hexright = Hex(right8)
hex_number = hexleft...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.