I want to display extended ascii characters (ohm symbol in particular) throughout my dialog box and app. MSDN says to use octal or hex notation of the ASCII character code. So, I tried...
AfxMessageBox("ohm hex: \xEA , ohm octal: \352"
But, this seems to display characters from the ANSI table.
ie. Displays char code 156 from ANSI. 156dec = 352oct.
Can someone tell me how I would display the Ohm symbol??
AfxMessageBox("ohm hex: \xEA , ohm octal: \352"
But, this seems to display characters from the ANSI table.
ie. Displays char code 156 from ANSI. 156dec = 352oct.
Can someone tell me how I would display the Ohm symbol??