Fwh 23.10 TGet another problem (UNSOLVED)

Post Reply
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Fwh 23.10 TGet another problem (UNSOLVED)

Post by Horizon »

Hi,

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

any help?
Last edited by Horizon on Sat Nov 18, 2023 6:56 am, edited 2 times in total.
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Fwh 23.10 TGet another problem

Post 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.
Regards

G. N. Rao.
Hyderabad, India
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post by Horizon »

Hi Mr. Rao,

Code: Select all | Expand

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.
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post by Horizon »

Hi

Any comment?
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
ertan
Posts: 25
Joined: Wed Jul 26, 2023 12:08 pm
Location: Istanbul, Turkiye

Re: Fwh 23.10 TGet another problem

Post by ertan »

perfectly worked for me. I have no problem
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post by Horizon »

ertan wrote:perfectly worked for me. I have no problem
Fwh 23.10 and FW_SetUnicode( .F. ) ?
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
ertan
Posts: 25
Joined: Wed Jul 26, 2023 12:08 pm
Location: Istanbul, Turkiye

Re: Fwh 23.10 TGet another problem

Post by ertan »

New and older versions of FW or SetUnicode() values no differences. same result. Maybe your font set is problem?
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post 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.
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
ertan
Posts: 25
Joined: Wed Jul 26, 2023 12:08 pm
Location: Istanbul, Turkiye

Re: Fwh 23.10 TGet another problem

Post by ertan »

My Database engine is SQL and I have not any problem so far.
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post by Horizon »

Hi,

I use dbf and dbfcdx.
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem

Post by Horizon »

Hi Mr. Rao,

any clue?
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Fwh 23.10 TGet another problem

Post by nageswaragunupudi »

Please help me.
Is this the right way to set Turkish language?

Code: Select all | Expand

#include "fivewin.ch"

REQUEST HB_LANG_TR
REQUEST HB_CODEPAGE_TRWIN

function Main()

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

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Fwh 23.10 TGet another problem

Post by nageswaragunupudi »

Maybe your font set is problem?
Can you please clarify how to define fonts choosing Turkish Charset?
Regards

G. N. Rao.
Hyderabad, India
User avatar
karinha
Posts: 7885
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Contact:

Re: Fwh 23.10 TGet another problem

Post by karinha »

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Fwh 23.10 TGet another problem

Post 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

DEFINE FONT oFont NAME "Segoe UI" SIZE 0,-16 CHARSET 162
Is this the right way?
Regards

G. N. Rao.
Hyderabad, India
Post Reply