News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Overstrike characters (diacritical marks)

Started by Mr Earl, January 19, 2006, 02:09:44 PM

Previous topic - Next topic

Mr Earl

How do you get a control in a dialog to accept these overstrike characters?
~ over the n of manana

Tedd

I don't think it's so much a function of the dialog as the operating system.
Assuming it will accept the character, and there is a glyph for it, there shouldn't be a problem.
Try holding down ALT (left; not AltGr) and type the character code on the numberpad (the separate one, not the digits above the letters) and then release alt.
The code for ñ is 164
No snowflake in an avalanche feels responsible.

Mr Earl

Than you Tedd.  That works.  Where can I find a list of those codes?

Tedd

You can either try searching for an ascii code map, except that those characters are 'extended' and so depend on the code-page selected.
The charactermap application (one of the windows tools) will show you, but the codes are in hex so you'd need to convert them. Plus it depends on the font!
Or, here's a little application I made earlier :green (Though I haven't got around to finishing it ::))


[attachment deleted by admin]
No snowflake in an avalanche feels responsible.

Mr Earl

Cool little program!  Thanks Tedd, I like that chart, just what I needed.


Mr Earl

Thanks TC.  My old ASCII table didn't have the Extended Codes.