Is it possible to set up a string constant containing a binary or hex value. The code below achieves what I want:
but ideally I'd use something like:
but one is illegal and the other is nonsense. If there is an answer, I imagine it's very simple!
Thanks in advance.
Code:
Private Const FldDelim As String = "ÿ"
Code:
Private Const FldDelim As String = Chr(255) 'This
Private Const FldDelim As String = "&HFF" 'or this
Thanks in advance.