Search found 10 matches

by Grzegorz
Wed Dec 19, 2007 12:55 pm
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Antonio Linares wrote:Grzegorz,

Can you actually type those characters in Pocket Wordpad ?
I can type it only by ALT + Ascii code. It's result ( the same in all fonts ):

ą ć ę ł ń ó ś ż ź Polish rights characters

¹ æ ê ³ ñ ó œ ¿ Ÿ characters on display

Ą Ć Ę Ł Ń Ó Ś Ż Ź

¥ Æ Ê £ Ñ Ó  ¯

Grzegorz
by Grzegorz
Wed Dec 19, 2007 9:49 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Grzegorz, We are looking for a Windows API function that may provide us the font charset to check if it has been properly set I need to display following characters ( codapage PLWIN -1250 ): ą - 185 - Ascii ć - 230 ę - 234 ł - 179 ń - 241 ó - 243 ś - 156 ż - 191 ź - 159 Ą - 165 Ć - 198 Ę - 202 Ł - ...
by Grzegorz
Tue Dec 18, 2007 11:00 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Antonio Linares wrote:Please try this:

oFont = TFont():New( "Verdana", 8, -12, .f., , , , , , , ,238 )
MsgInfo( oFont:nCharSet )

and check if it shows 238, thanks
For all five fonts it return 238 but on display is the same.
by Grzegorz
Tue Dec 18, 2007 9:47 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

You can not do it this way: DEFINE FONT oFont NAME "Verdana" SIZE 8, -12 oFont:nCharSet := 238 // change to East Europe char set instead, do it this way: oFont = TFont():New( "Verdana", -12, 8,,,,,,,, 238 ) I changed nHeight with nWidth ( 8 and -12 ) and tested it and no change ...
by Grzegorz
Tue Dec 18, 2007 8:59 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Then you can only use those fonts unless you install more fonts on it. Please review samples\Test2.prg to see how to manage fonts I test this sample: function Main() local oWnd, oFont, cChar, oFont1, oFont2, oFont3, oFont4 Request Hb_Lang_PLWIN Request Hb_CodePage_PLWIN Hb_LangSelect ('PLWIN') Hb_S...
by Grzegorz
Mon Dec 17, 2007 3:34 pm
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Antonio Linares wrote:Please check in Pocket Word what fonts are availables
I have only WordPad. There are Times New Roman, Courier New, Symbol, Tahoma, Wingdings.
by Grzegorz
Mon Dec 17, 2007 1:58 pm
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

If Polish is not supported by Windows Mobile (it seems quite strange), then you may need to build your own function to properly translate your chars into the right ones: TextToPolish( <cText> ) --> <cPolishText> Unfortunately we don't know Polish so we can't help you there :-( but its not a difficu...
by Grzegorz
Mon Dec 17, 2007 10:37 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Antonio Linares wrote:Have you properly configured your Pocket PC in Settings-System-Regional Settings-Region ?
In Regional Settings Properties J have Polish in Your Locale but User Interface Language is not available ( is English ).
by Grzegorz
Mon Dec 17, 2007 9:25 am
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

Grzegorz, > specific polish characters are replaced with Western language characters Do those polish characters look fine in Pocket Word using the same font ? No, this characters are the same like in FiveWin, Alt + 241 = ñ, instead of ń. Polish characters are displey only in names if months in syst...
by Grzegorz
Fri Dec 14, 2007 3:57 pm
Forum: FiveWin for Pocket PC
Topic: National characters on display
Replies: 19
Views: 4201

National characters on display

How to force Windows CE on Psion to display polish national characters? function Main() local oWnd, oFont Request Hb_Lang_PLWIN Request Hb_CodePage_PLWIN Hb_LangSelect ('PLWIN') Hb_SetCodePage ('PLWIN') DEFINE FONT oFont NAME "times" SIZE 10, 18 DEFINE WINDOW oWnd TITLE "Tutor05"...