Click to See Complete Forum and Search --> : aaaarrrgghhh !!! ñïóàé...
WP
Jan 10th, 2001, 07:51 AM
In the program I'm writing, I display a word in Spanish that the user has to translate. But when the word is like "adónde" he displays a 'less than or equal' sign, instead of the "ó".
How can I display a simple "ó" instead of that sign ?
It would be a very great help! :D
Thanks,
WP
WP
Jan 11th, 2001, 02:07 PM
HELP I really need this !!!
WP
Technocrat
Jan 11th, 2001, 05:38 PM
I can see you are desperate so I am going to give it a shot.
Where/what are you trying to display it to?
How are you trying to display it?
WP
Jan 12th, 2001, 10:13 AM
First of all its a console program.
The word I want to display is "adónde"
but he displays "ad<nde" 'cause he can't display a character with an accent. How can I push him to do this.
WP
Technocrat
Jan 12th, 2001, 11:12 AM
DOS Console YUCK!!
Ok I got this to work.
char t;
t = 162;
cout << "ad";
cout << t;
cout << "nde";
You will have to find the ASCII value of the extended character you want and make that value the value of t. If you look in the MSDN for the ASCII char chart you will find the ASCII values in VC++
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.