Page 1 of 9

Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Mon Nov 06, 2023 7:55 am
by Horizon
Hi,

Turkish characters are displayed as question mark in fwh 23.10. when FW_SetUnicode( .F. )

any help?

Re: Fwh 23.10 TGet another problem

PostPosted: Mon Nov 06, 2023 12:34 pm
by nageswaragunupudi
Please help me to understand more about Turkish characters.

Please copy and paste a string of characters with which you are having problems now.

Re: Fwh 23.10 TGet another problem

PostPosted: Mon Nov 06, 2023 5:22 pm
by Horizon
Hi Mr. Rao,

Code: Select all  Expand view
A   Character   Ascii
1   Ğ            208
2   Ş            222
3   İ            221
4   ğ            240
5   ş            254
6   ı            253
 


When I press this characters from keyboard, it prints ?.

Thanks.

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 7:33 am
by Horizon
Hi

Any comment?

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 7:48 am
by ertan
perfectly worked for me. I have no problem

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 9:06 am
by Horizon
ertan wrote:perfectly worked for me. I have no problem


Fwh 23.10 and FW_SetUnicode( .F. ) ?

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 9:27 am
by ertan
New and older versions of FW or SetUnicode() values no differences. same result. Maybe your font set is problem?

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 9:31 am
by Horizon
ertan wrote:New and older versions of FW or SetUnicode() values no differences. same result. Maybe your font set is problem?


There is not any problem fwh 23.07.

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 9:37 am
by ertan
My Database engine is SQL and I have not any problem so far.

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 9:42 am
by Horizon
Hi,

I use dbf and dbfcdx.

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 2:22 pm
by Horizon
Hi Mr. Rao,

any clue?

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 2:23 pm
by nageswaragunupudi
Please help me.
Is this the right way to set Turkish language?

Code: Select all  Expand view
#include "fivewin.ch"

REQUEST HB_LANG_TR
REQUEST HB_CODEPAGE_TRWIN

function Main()

   HB_LANGSELECT( "TR" )
   HB_CDPSELECT( "TRWIN" )

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 2:26 pm
by nageswaragunupudi
Maybe your font set is problem?


Can you please clarify how to define fonts choosing Turkish Charset?

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 2:44 pm
by karinha

Re: Fwh 23.10 TGet another problem

PostPosted: Tue Nov 07, 2023 2:54 pm
by nageswaragunupudi
nageswaragunupudi wrote:
Maybe your font set is problem?


Can you please clarify how to define fonts choosing Turkish Charset?


Got it, using CHARSET 162.
With this font definition I am able to see Turkish fonts for the above ASCII codes correctly

Code: Select all  Expand view
DEFINE FONT oFont NAME "Segoe UI" SIZE 0,-16 CHARSET 162

Is this the right way?