I would like to show the non-ASCII "ohm" character in my dialog window. I thought I would be able to do this through the resource file, but that didn't work.
STRINGTABLE
BEGIN
IDS_OHM "Ω"
END
and then later in the program
CString thermUnits = LoadString(IDS_OHM);
However, it just shows up as a '?' character. Does anybody have any other ideas?
Thank you in advance!