Fwh 23.10 TGet another problem (UNSOLVED)

User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by nageswaragunupudi »

Sent
Regards

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

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by Horizon »

nageswaragunupudi wrote:Sent
Hi Mr. Rao,

Your sample program works very well. I will try to compile my own application and will get back to you immediately.
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 (UNSOLVED)

Post by Horizon »

Hi Mr. Rao,

I can not compile my application with your latest libs because of these errors.

Code: Select all | Expand

Master.obj : error LNK2001: unresolved external symbol _HB_FUN_USEXLSXLIB
Master.obj : error LNK2001: unresolved external symbol _HB_FUN_XLSXLIB
This lib is added to my mak file.

Code: Select all | Expand

echo C:\fwH\lib\xlsxlibhbmsvc.lib >> msvc.tmp
I have returned to original build of fwh 23.10. I can compiled without any error (this thread related).

I will disable xlsxlib and try to test other (TGet) problem.
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 (UNSOLVED)

Post by nageswaragunupudi »

Sent already
Regards

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

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by Horizon »

nageswaragunupudi wrote:Sent already
Your e-mail did not arrive yet.
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 (UNSOLVED)

Post by nageswaragunupudi »

You got email from wetransfe.com
Wetransfer.com says you downloaded the MSVC libs already
Regards

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

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by Horizon »

nageswaragunupudi wrote:You got email from wetransfe.com
Wetransfer.com says you downloaded the MSVC libs already
Yes Mr. Rao. I have downloaded libs that is sended at 10.30 and I have send my review before this post about this libs.

When you wrote "Already sent", I thought you sent it once again.
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 (UNSOLVED)

Post by nageswaragunupudi »

Your sample program works very well. I will try to compile my own application and will get back to you immediately.
Thanks.
Sorry for all the inconvenience.
New version will be released soon and you will not find these issue there.
Regards

G. N. Rao.
Hyderabad, India
User avatar
Giovany Vecchi
Posts: 223
Joined: Mon Jun 05, 2006 9:39 pm
Location: Brasil

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by Giovany Vecchi »

Hello everybody.
I have no idea about Turkish characters.
Has anyone tried using it like this:

Code: Select all | Expand

   REQUEST HB_LANG_TR 
   HB_LANGSELECT("TR"/*Turkish*/)

   REQUEST HB_CODEPAGE_TRWIN
   HB_SETCODEPAGE("TRWIN")
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 (UNSOLVED)

Post by karinha »

Como hago esto en Turkish?

Code: Select all | Expand

#Include "FiveWin.ch"

REQUEST HB_LANG_ES         // idioma español
REQUEST HB_CODEPAGE_ESWIN  // Para reconocer la EÑE y ACENTOS en los índices
REQUEST HB_CODEPAGE_ES850  // Se añade el idioma español

FUNCTION Main()

   HB_SETCODEPAGE( "ES850" ) // Se añade el código de página del idioma español
   HB_LANGSELECT ( "ES" )    // Idioma Español
   HB_SETCODEPAGE( "ESWIN" ) // Para reconocer la EÑE y ACENTOS en los índices

   ? CMONTH( Date() )

   ? OemToAnsi( CDOW( Date() ) )

RETURN NIL

// FIN / END
 
Gracias, thanks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
ertan
Posts: 25
Joined: Wed Jul 26, 2023 12:08 pm
Location: Istanbul, Turkiye

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by ertan »

Hi,

REQUEST HB_CODEPAGE_UTF8

HB_CdpSelect( "UTF8" )
FW_SetUnicode( .T. )
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Post by Horizon »

nageswaragunupudi wrote:
Your sample program works very well. I will try to compile my own application and will get back to you immediately.
Thanks.
Sorry for all the inconvenience.
New version will be released soon and you will not find these issue there.
Hi Mr. Rao,

I have uploaded my application to some customers that is compiled with sended libs from you. So far, no problems have been encountered with Turkish characters. Thank you very much for your help and patience in this matter.

What about xlsxlib compile problems. Should I wait to new version of fwh?
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 (UNSOLVED)

Post by Horizon »

karinha wrote:Como hago esto en Turkish?

Code: Select all | Expand

#Include "FiveWin.ch"

REQUEST HB_LANG_ES         // idioma español
REQUEST HB_CODEPAGE_ESWIN  // Para reconocer la EÑE y ACENTOS en los índices
REQUEST HB_CODEPAGE_ES850  // Se añade el idioma español

FUNCTION Main()

   HB_SETCODEPAGE( "ES850" ) // Se añade el código de página del idioma español
   HB_LANGSELECT ( "ES" )    // Idioma Español
   HB_SETCODEPAGE( "ESWIN" ) // Para reconocer la EÑE y ACENTOS en los índices

   ? CMONTH( Date() )

   ? OemToAnsi( CDOW( Date() ) )

RETURN NIL

// FIN / END
 
Gracias, thanks.

Regards, saludos.

Code: Select all | Expand

#Include "FiveWin.ch"

REQUEST HB_LANG_TR         // idioma español
REQUEST HB_CODEPAGE_TRWIN  // Para reconocer la EÑE y ACENTOS en los índices
//REQUEST HB_CODEPAGE_ES850  // Se añade el idioma español

FUNCTION Main()
    
   //HB_SETCODEPAGE( "ES850" ) // Se añade el código de página del idioma español
   HB_LANGSELECT ( "TR" )    // Idioma Español
   HB_SETCODEPAGE( "TRWIN" ) // Para reconocer la EÑE y ACENTOS en los índices

   ? CMONTH( Date() )

   ? OemToAnsi( CDOW( Date() ) )

RETURN NIL
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
Post Reply