I'm trying to use the First Quarter Moon and Last Quarter Moon symbols from the Wingdings 2 font.
They look like crescent moons.
I need a way to acquire them for pasting into an MS Word file.
But I can't seem to get them.
If you copy them from the Windows Character Map and paste them into a RichTextBox, they show up properly.
But if you do an ASC() on the pasted Chars you get an ASCII of 63 for both of them.
If you try to add Chr$(63) to the RichTextBox you get some other char altogether.
How the heck do you get them?
Last edited by longwolf; Jul 2nd, 2005 at 03:50 PM.
Reason: Resolved
I'm trying to use the First Quarter Moon and Last Quarter Moon symbols from the Wingdings 2 font.
They look like crescent moons.
I need a way to acquire them for pasting into an MS Word file.
But I can't seem to get them.
If you copy them from the Windows Character Map and paste them into a RichTextBox, they show up properly.
But if you do an ASC() on the pasted Chars you get an ASCII of 63 for both of them.
If you try to add Chr$(63) to the RichTextBox you get some other char altogether.
How the heck do you get them?
The problem is that you used a different font.
If you set a font to Wingdings for the RichTextbox then it will work again.
The character 63 is used in every font as no font has a unique code and all follow the ASKII characters so change the font to Wingdings and then try it again