|
-
Jan 10th, 2001, 08:51 AM
#1
Thread Starter
Hyperactive Member
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! 
Thanks,
WP
-
Jan 11th, 2001, 03:07 PM
#2
Thread Starter
Hyperactive Member
!
HELP I really need this !!!
WP
-
Jan 11th, 2001, 06:38 PM
#3
Frenzied Member
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?
MSVS 6, .NET & .NET 2003 Pro
I HATE MSDN with .NET & .NET 2003!!!
Check out my sites:
http://www.filthyhands.com
http://www.techno-coding.com

-
Jan 12th, 2001, 11:13 AM
#4
Thread Starter
Hyperactive Member
OK
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
-
Jan 12th, 2001, 12:12 PM
#5
Frenzied Member
DOS Console YUCK!!
Ok I got this to work.
Code:
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++
MSVS 6, .NET & .NET 2003 Pro
I HATE MSDN with .NET & .NET 2003!!!
Check out my sites:
http://www.filthyhands.com
http://www.techno-coding.com

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|