Dear Master Rao, This issue is FW_SetUnicode(.F.) is not the same behavier as ANSI (do not declare FW_SetUnicode). K.Surasak, What is chr(202)+chr(161) represent for (which character in Thai) ? Thai characters 202,161 are ส, ก Thai language in (TIS620) ascii table has not 2 bytes character. All char...
Dear Surasak, I test with FWH2304 without problem, do not define FW_SetUnicode() in your code. That's all, if you use ANSI. https://i.ibb.co/PwFqK9k/testthai.png testget2.prg #Include "FiveWin.Ch"Function Main() Local oDlg Local oGet, oSay, oFont local cVar :=...
Yes. We did understand the issue soon after you posted this topic. We also found out the source of the problem. We are in the process of finding a solution. Please give us a little time.
Dear nageswaragunupudi, My ANSI Program work fine on FW17 and older, Just found this problem on FW24 with BCC7.70 In THAI character TIS-620 and Window 874 character in my sample cannot combine Please see the picture at link below: http://www.asic-net.com/temp/Font-1.jpg http://ww...
I've sent you via an email, 2 exe file build from FWH1901 and FWH2304. You can test by drag&drop above and bottom SAY balance. Cloud you check for me please?
nageswaragunupudi wrote:Thanks. What is the FWH version you are using?
Dear Master Rao, I've used FW1901 and FWH2304 with BCC7.3. FWH1901, booking program are still stuck Drag&Drop feature that I used to mention. Could you review on it, if you have got time please? https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43699&sid=52bbeb836b67...
Dear Master Rao, TIS-620 is "Thai Industrial Standard", it uses standard ascii table for Thai characters. Windows-874 is adapt and extended from TIS-620. It's almost the same, all use 1 byte character. To show "สก", do not use FW_SetUniCode(). It can show correctly. What is TIS62...
K.Surasak, What is chr(202)+chr(161) represent for (which character in Thai) ? Thai characters 202,161 are ส, ก Thai language in (TIS620) ascii table has not 2 bytes character. All character is represent 1 ascii code. What is TIS620? Can you please enlighten me? To the extent I know the Thai codepa...
Dear All, Thai language in (TIS620) ascii table has not 2 bytes character. All character is represent 1 ascii code. K.Surasak, What is chr(202)+chr(161) represent for (which character in Thai) ? There is a real problem. This is arising because the above 2 byte character combinations are being treate...
There is a real problem. This is arising because the above 2 byte character combinations are being treated as a single UTF8 character but not as 2 ANSI characters Please check this Harbour function c := chr(202)+chr(161) // check other combinations also? hb_strisutf8( c ) //...