Help setting the value of a variable

  • Thread starter Thread starter Will Sellers
  • Start date Start date
W

Will Sellers

I have a file that contains hex 1c as field separators.
I have a variable TOKEN which is in the string manipulation code.
How do I set the token = to 1c
 
Use the Hex() function to return the number as a string, e.g.:
Hex(28)

Use Val() to go the other way. You may need to concatenate the "&H" into the
string, e.g.:
Val("&H1C")
 
Back
Top