National characters on display
Posted: Fri Dec 14, 2007 3:57 pm
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"
@ 1, 2 SAY cmonth( date() ) FONT oFont
return
The names of month are on polish language but specific polish characters are replaced with Western language 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"
@ 1, 2 SAY cmonth( date() ) FONT oFont
return
The names of month are on polish language but specific polish characters are replaced with Western language characters.