B
Bear
How can I specify a nonbreaking space in a constant? I'd like to accomplish:
Const strColon As String = ":" & Chr(160)
But one can't use the Chr function when dimensioning. The higher idea is to
isolate the delimiter used at the beginning of the code for easier
maintenance.
Bear
Const strColon As String = ":" & Chr(160)
But one can't use the Chr function when dimensioning. The higher idea is to
isolate the delimiter used at the beginning of the code for easier
maintenance.
Bear