Hi to all,

I have recompiled my clipper programs with Harbour (beta3 version), and
all tests looks great - speed, stability, and the most important CodePage!

All strings in prg-s are in HR437 CP.
What I was able to do (to have) with beta3 release was:
- All Dbfs are in HR437
- Keyboard is (Win standard) HR (HR852)
- On Display everything is in HR852, but internaly in HR437 - exactly what I need :)

After Clean install of 2.0.0 release (win binaries) no keyboard and/or Display
conversion is active :(


My Configuration:
- Win XP SP3 (Regional settings - Croatian)
- Compiler - mingw
- Harbour release:
  Clean harbour-2.0.0beta3-win.exe (downloaded september 11, 2009)
  Clean harbour-2.0.0-win.exe (downloaded Deceber 23, 2009)


I would kindly ask if someone could verify and/or point me what I'm doing wrong

With regards,

Vito


Test Code:

//-----------------------
REQUEST HB_CODEPAGE_HR437
REQUEST HB_CODEPAGE_HR852

LOCAL  yyy

HB_CdpSelect("HR437")
HB_SetKeyCP ('HR437', 'HR852', .T.)
HB_SetDispCP('HR852', 'HR437', .T.)
MSetCursor(.F.)
SetMode(25, 80)
SetBlink(.F.)

Scroll()
yyy := PadR('[\^]@', 10)
@ 12, 10 SAY 'HR437 - [\^]@:' GET yyy // (1)
READ

MemoWrit('TestCP.LST', yyy)
//-----------------------


Results:

     -----------------------------------------------------
     | Visible on screen    |  Get is extended           |
     | (under CMD - 852)    |  with (852) šđčćž          |
------|----------------------|----------------------------|
beta3 | HR437 - ŠĐČĆŽ: ŠĐČĆŽ |  HR437 - ŠĐČĆŽ: ŠĐČĆŽšđčćž |
------|----------------------|----------------------------
2.0.0 | HR437 - [\^]@: [\^]@ |  HR437 - [\^]@: [...@šđčćž |
------|----------------------|-----------------------------

      ---------------------------
     | Saved in TestCP.LST       |
     | (Viewed under CMD - 852)  |
------|---------------------------|
beta3 | [...@{|~}`                |
------|---------------------------|
2.0.0 | [...@šđčćž                |
------|---------------------------
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to