Page 9 of 9

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 7:31 am
by nageswaragunupudi
Sent

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 7:45 am
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.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 8:34 am
by Horizon
Hi Mr. Rao,

I can not compile my application with your latest libs because of these errors.
Code: Select all  Expand view
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 view
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.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 10:48 am
by nageswaragunupudi
Sent already

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 11:29 am
by Horizon
nageswaragunupudi wrote:Sent already

Your e-mail did not arrive yet.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 12:26 pm
by nageswaragunupudi
You got email from wetransfe.com
Wetransfer.com says you downloaded the MSVC libs already

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 12:44 pm
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.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 3:09 pm
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.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 4:01 pm
by Giovany Vecchi
Hello everybody.
I have no idea about Turkish characters.
Has anyone tried using it like this:

Code: Select all  Expand view
  REQUEST HB_LANG_TR
   HB_LANGSELECT("TR"/*Turkish*/)

   REQUEST HB_CODEPAGE_TRWIN
   HB_SETCODEPAGE("TRWIN")

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 5:09 pm
by karinha
Como hago esto en Turkish?

Code: Select all  Expand view

#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.

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Wed Feb 21, 2024 5:19 pm
by ertan
Hi,

REQUEST HB_CODEPAGE_UTF8

HB_CdpSelect( "UTF8" )
FW_SetUnicode( .T. )

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Thu Feb 22, 2024 2:34 pm
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?

Re: Fwh 23.10 TGet another problem (UNSOLVED)

PostPosted: Thu Feb 22, 2024 2:46 pm
by Horizon
karinha wrote:Como hago esto en Turkish?

Code: Select all  Expand view

#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 view
#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