Fwh 23.10 TGet another problem (UNSOLVED)
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Hi Mr. Rao,nageswaragunupudi wrote:Sent
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
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Hi Mr. Rao,
I can not compile my application with your latest libs because of these errors.
This lib is added to my mak file.
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.
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
Code: Select all | Expand
echo C:\fwH\lib\xlsxlibhbmsvc.lib >> msvc.tmp
I will disable xlsxlib and try to test other (TGet) problem.
Regards,
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Your e-mail did not arrive yet.nageswaragunupudi wrote:Sent already
Regards,
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Fwh 23.10 TGet another problem (UNSOLVED)
You got email from wetransfe.com
Wetransfer.com says you downloaded the MSVC libs already
Wetransfer.com says you downloaded the MSVC libs already
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: Fwh 23.10 TGet another problem (UNSOLVED)
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
When you wrote "Already sent", I thought you sent it once again.
Regards,
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Fwh 23.10 TGet another problem (UNSOLVED)
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.
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Giovany Vecchi
- Posts: 223
- Joined: Mon Jun 05, 2006 9:39 pm
- Location: Brasil
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Hello everybody.
I have no idea about Turkish characters.
Has anyone tried using it like this:
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")
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Como hago esto en Turkish?
Gracias, thanks.
Regards, saludos.
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.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Re: Fwh 23.10 TGet another problem (UNSOLVED)
Hi,
REQUEST HB_CODEPAGE_UTF8
HB_CdpSelect( "UTF8" )
FW_SetUnicode( .T. )
REQUEST HB_CODEPAGE_UTF8
HB_CdpSelect( "UTF8" )
FW_SetUnicode( .T. )
Re: Fwh 23.10 TGet another problem (UNSOLVED)
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.
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
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Re: Fwh 23.10 TGet another problem (UNSOLVED)
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
Regards,
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.04