Re: Fwh 23.10 TGet another problem (UNSOLVED)
Posted: Wed Feb 21, 2024 7:31 am
Sent
www.FiveTechSoft.com
https://forums.fivetechsupport.com/
Hi Mr. Rao,nageswaragunupudi wrote:Sent
Code: Select all | Expand
Master.obj : error LNK2001: unresolved external symbol _HB_FUN_USEXLSXLIB
Master.obj : error LNK2001: unresolved external symbol _HB_FUN_XLSXLIB
Code: Select all | Expand
echo C:\fwH\lib\xlsxlibhbmsvc.lib >> msvc.tmp
Your e-mail did not arrive yet.nageswaragunupudi wrote:Sent 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.nageswaragunupudi wrote:You got email from wetransfe.com
Wetransfer.com says you downloaded the MSVC libs already
Thanks.Your sample program works very well. I will try to compile my own application and will get back to you immediately.
Code: Select all | Expand
REQUEST HB_LANG_TR
HB_LANGSELECT("TR"/*Turkish*/)
REQUEST HB_CODEPAGE_TRWIN
HB_SETCODEPAGE("TRWIN")
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
Hi Mr. Rao,nageswaragunupudi wrote:Thanks.Your sample program works very well. I will try to compile my own application and will get back to you immediately.
Sorry for all the inconvenience.
New version will be released soon and you will not find these issue there.
karinha wrote:Como hago esto en Turkish?
Gracias, thanks.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
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