|
From: Baloghy G. <bal...@gm...> - 2014-09-27 09:51:56
|
Hi,
I have an orginally clipper, later harbour (gtvwt) application.I try
it to transform to a gui application with hwgui.
My dbf tables are in HU852 codepage. I try to use the
SET(_SET_DBCODEPAGE,"HU852") command, but the text in the the say /
get gui elements are wrong.
Could you help me, what is missing from my sample program?
Regard,
Gabor
#include "windows.ch"
#include "guilib.ch"
REQUEST HB_CODEPAGE_HU852
REQUEST HB_LANG_HU852
FUNCTION MAIN
HB_LANGSELECT("HU852")
SET(_SET_CODEPAGE,"HU852")
SET(_SET_DBCODEPAGE,"HU852")
use table
init dialog oTest852 title "Test" size 600,400
x:=table->abcd
@ 20,20 say x size 300,25
@ 20,50 get x size 300,25
activate dialog oTest852 center
return
|