Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Euro (€) symbol 1

Status
Not open for further replies.

yellowke

Programmer
Nov 5, 2002
48
BE
How can I use the € symbol in foxpro?
When I use it I get Ç.
Do I need to install a new font.
I use windows98se + courier new

Tnx in advance
Yellowke
 
Hej !!
In my VFP 6.0 (win 2000):
?chr(128)='€'
and
?chr(199)='Ç' Kind regards from Warsaw !!!!!
Monika (monikai@yahoo.com)
 
?chr(128)='Ç' gives this as result
?chr(199)='Ã' gives this as result

I guess it has something to do with fonts or so, but who am I ;)

anyway anyone an idea?
 
Hej !
In font Command window I have: Courier New and script: Central European Kind regards from Warsaw !!!!!
Monika (monikai@yahoo.com)
 
Is it possible to assign the alt+128 combination to the €
 
Yellowke

I guess it has something to do with fonts or so, but who am I ;)

Change your font. I use Courrier Western script and I get the Euro symbol. Have you tried changing font?

Is it possible to assign the alt+128 combination to the €

Not if the font you are using doesn't have the symbol.
Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first
 
The font has the symbol, but it's assigned to ctr+alt+e
But still if I print the Ç (alt+128) symbol comes on the paper
 
The font has the symbol, but it's assigned to ctr+alt+e
But still if I print the Ç (alt+128) symbol comes on the paper


Trying changing the character mapping for the Euro symbol. You woudl do that through Windows. Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first
 
Yellowke

It depends on which version of Windows you are using but here where to find it on WindowsXP Pro:
Using Character MapYou can use Character Map to copy and paste special characters into your documents, such as the trademark symbol, special mathematical characters, or a character from the character set of another language.

Open Character Map.

Notes

To open Character Map, click Start, point to All Programs, point to Accessories, point to System Tools, and then click Character Map.
For information about using Character Map, click Help in Character Map.



Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first
 
In charactermap I can see the € symbol, but it is assigned to alt+ctr+e. I want it to be assigned to alt+128 as it should be.

Anyone know how?
 
HI yellowke,

In the keyboard, if you press
ALT+0128 (Hold down Alt and enter ZERO,ONE,TWO,EIGHT)
and release the keyboard you will get € symbal.

If your users dont know to use that, you can cut and paste that as your string..

****************
FUNCTION myEuro
myEuro = "€"
****************
You can even cut and paste this in your programme.
Then suitably code it in your programme ..
ON KEY label F12 DO myEuro

Hope this solves your problem.
ramani :)
(Subramanian.G),FoxAcc, ramani_g@yahoo.com
 
Hej !
I have Polish keyboard. I write our letters (eg a with 'tail') by right Alt + a (i think: right Alt=left Alt + Shift). In my keyboard € = right Alt + u (only lower not upper). Kind regards from Warsaw !!!!!
Monika (monikai@yahoo.com)
 
Yellowke

In charactermap I can see the € symbol, but it is assigned to alt+ctr+e. I want it to be assigned to alt+128 as it should be.

You cannot chnage the existing mapping in a font, you would have to create a Private Character.


Using Private Character EditorYou can use Private Character Editor to create unique letters and logos for your font library.

Open Private Character Editor.

Notes

To open Private Character Editor, click Start, and then click Run. In the Open box, type eudcedit.
For information about using Private Character Editor, click the Help menu in Private Character Editor.
XOX
Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top