Russian language and FIVEWIN
Russian language and FIVEWIN
Today I had a request to make printouts and some input screens in Russian language
I copied a word from an Russian homepage Рестораны (I hope this is Russian) and tried to insert this via my Fivewin program to a database. But the result is ??????????.
Could someone please help me.
Regards,
Otto
I copied a word from an Russian homepage Рестораны (I hope this is Russian) and tried to insert this via my Fivewin program to a database. But the result is ??????????.
Could someone please help me.
Regards,
Otto
- Robert Frank
- Posts: 95
- Joined: Fri Nov 23, 2007 4:43 am
- Location: Gdynia-Poland
- Contact:
- Robert Frank
- Posts: 95
- Joined: Fri Nov 23, 2007 4:43 am
- Location: Gdynia-Poland
- Contact:
- Robert Frank
- Posts: 95
- Joined: Fri Nov 23, 2007 4:43 am
- Location: Gdynia-Poland
- Contact:
Look on ASCI codepage
http://www.ascii.ca/koi8-r.htm
and
http://www.ibiblio.org/sergei/Software/
Problem is to input high ascii value via keyboard
http://www.ascii.ca/koi8-r.htm
and
http://www.ibiblio.org/sergei/Software/
Problem is to input high ascii value via keyboard
Robert Frank
- Robert Frank
- Posts: 95
- Joined: Fri Nov 23, 2007 4:43 am
- Location: Gdynia-Poland
- Contact:
Answer is, that you can play with it with database, but it isn't easy.Robert Frank wrote:I've just written letter to my coleague from Russia how to do it.
I'm waiting for an answer.
User interface for both of languages in one time is near impossible (he is Delphy programmer - he doesn't know FWH).
R.
Robert Frank
special font-characters
Hello Otto,
I solved the problem with my font-editor.
I used Arial and then i replaced not needed characters
with the desired ones. As well it is possible to paint
own characters. Then i installed the new font with a different name.
When you need some russian-font, i can send them to you
so you can copy special characters to a different font.
When you do it this way, you have your own font.
In your program you call the font with => DEFINE FONT oFont "New Font"
My customers are very satisfied with this solution
because there is no need to use different fonts or combinations alt+ ...
As a sample i replaced the not needed chacacter
# with ALT + 0137 ( double % )
When you need a font-editor, i can send it to you.
Regards
Uwe
I solved the problem with my font-editor.
I used Arial and then i replaced not needed characters
with the desired ones. As well it is possible to paint
own characters. Then i installed the new font with a different name.
When you need some russian-font, i can send them to you
so you can copy special characters to a different font.
When you do it this way, you have your own font.
In your program you call the font with => DEFINE FONT oFont "New Font"
My customers are very satisfied with this solution
because there is no need to use different fonts or combinations alt+ ...
As a sample i replaced the not needed chacacter
# with ALT + 0137 ( double % )
When you need a font-editor, i can send it to you.
Regards
Uwe
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: Russian language and FIVEWIN
Otto ,Otto wrote:Today I had a request to make printouts and some input screens in Russian language
I copied a word from an Russian homepage Рестораны (I hope this is Russian) and tried to insert this via my Fivewin program to a database. But the result is ??????????.
Could someone please help me.
Regards,
Otto
I'm from Lithuania , Russian neigbour . And have many troubles with Russian fonts . The main problem it seems is that Windows can't work at the same time with some codings . Multilingual here isn't solved for non Unicode programs .
If you want to use Russian fonts , try through "Regional and Language options" in "Advanced" tab to change language to "Russian" , also and in "Regional options" . After restart you will see true Рестораны ( Restaurants ... )
Question to Antonio - how to make FWH program Unicode ? ...
With best regards !
Rimantas U.
One moment I was playing with that . But this solution isn't good . The own font must be instaled in PC of user . So if a user will change PC , then problems will appears . But maybe it can be done with instaliation of own font from FWH application ... . The best solution - Unicode application . Sorry , but I don't know how to do that with FWH . So I leaved this question to Antonio - is any possibility to do FWH application as Unicode ?Otto wrote:Rimantas,
Thank you very much for your help.
Glad to know it is Restaurant – one never knows what you copy and paste if you don’t know a language.
Did you ever tried a solution as Uwe mentioned with an own font?
Regards,
Otto
ADDED - searching through forum I found that : Antonio's answer -
"FWH provides AnsiToWide() and WideToAnsi() so you can convert from ansi to unicode and viceversa."
I tried that with one browse :
Code: Select all
ADD COLUMN TO BROWSE oBrw DATA OemToAnsi( PREKES->PREKE_RUS ) ;
HEADER aHead[ 12 ] PICTURE "@!K" EDITABLE
So , Otto , you must add this functions in all places where you want to see true cirrilic inscriptions ...
Rimantas U.