Hi,
I want to display a special character '?' in a textbox to make this sentence in the textbox: "press '?' to continue".
When I take a look at the windows character map almost every font has this character but I cannot use it in vb because the value for chr()-function cannot exceed 255. For example chr(97) corresponds with 'a' (the hex-value is 61, the value that is shown in the windows Character map).
So far no problem. But I want to display the character '?' value 0x25BA (9658) I get an error, chr() cannot exceed with a value of 255 (FF).
Is there another possibilty to achieve this.
thanks
Wim
I want to display a special character '?' in a textbox to make this sentence in the textbox: "press '?' to continue".
When I take a look at the windows character map almost every font has this character but I cannot use it in vb because the value for chr()-function cannot exceed 255. For example chr(97) corresponds with 'a' (the hex-value is 61, the value that is shown in the windows Character map).
So far no problem. But I want to display the character '?' value 0x25BA (9658) I get an error, chr() cannot exceed with a value of 255 (FF).
Is there another possibilty to achieve this.
thanks
Wim