I have an application that requires the display of unicode strings using a specific lookup-table-esque font.
This font has actual symbols for characters U+0000 to U+0020.
I have no problems building my string from a set of chars. The problem is when I try to set this string to the textbox.
Regardless of the font I choose for the textbox (the special font, or otherwise), when I do "TextBox1.Text = mycrazystring", then check the Text property of TextBox1 (which I just set), I get "", nothing.
Is this because unicode characters U+0000 to U+0020 are unsupported? Do they access functions like newline, tab, or backspace, like I suspect they do when they get placed in the text box?
If I build a string containing characters 0000 through 0023 I expect to see at least an exclamation mark in the TextBox1.Text property after the string is assigned to it, but no dice.
Do I need to make a custom font that shifts my current font by 0020?