Page 1 of 1

SET CODEPAGE - hb_LANGSELECT() & hb_CDPSELECT()

Posted: Mon Nov 22, 2021 12:36 am
by AUGE_OHR
hi,

for my German App i use

Code: Select all

   SET LANGUAGE TO GERMAN
   SET CODEPAGE TO GERMAN
   SET DATE GERMAN
when use "that" Syntax : is it OEM or ANSI :?: ( seems not UNICODE )

but how when use with other Language / Country :?:

---

instead i can use harbour hb_LANGSELECT() & hb_CDPSELECT()

hb_LANGSELECT() use e.g. "DE" and Codepgae 850 so that is OEM, or :?:
hb_CDPSELECT() have German "DE" or "DEWIN" , so it is OEM or ANSI

Question : is this the same

Code: Select all

   SET LANGUAGE TO GERMAN
   SET CODEPAGE TO GERMAN

Code: Select all

   hb_LANGSELECT("DE") 
   hb_CDPSELECT("DE")
what about DATE Format :idea: