We are looking for a method to convert the value of a barcode (13 digits) to a hexadecimal value. We are not getting this found in the manuals or on this forum. Is there more experience in converting values to hexadecimal?
Thank you!
We are looking for a method to convert the value of a barcode (13 digits) to a hexadecimal value. We are not getting this found in the manuals or on this forum. Is there more experience in converting values to hexadecimal?
Thank you!
If you want to display the value in hexadecimal format within a text field, the following approach should be effective:
BasedStr$(YourValue, 16)
Thank you! This is exactly what I was looking for.