Página 1 de 1

index sequence

Publicado: Dom Nov 13, 2005 9:53 am
por Ingo
Hello,
sorry I am not familiar with xHarbour. Could anybody tell me how to set the
environment in xHarbour/xailer to building indices (DBFCDX) with the correct
sequence in german.
For example:
Correct is
"A".."Ä" .. "B" ...... "Z"
Now the sequence is
"A" .. "B" ...... "Z" .. "Ä"
I'm using
REQUEST DBFCDX
REQUEST HB_LANG_DE
HB_LANGSELECT( 'DE' )
Is there anything more necessary?
I think there is the same problem with the special spanish letters.
Thanks in advance
Ingo

index sequence

Publicado: Dom Nov 13, 2005 11:03 am
por Miguel Torrellas
Hello:
In Sapnish i am using
REQUEST HB_LANG_ES // for messages
HB_LANGSELECT( "ES" )
REQUEST HB_CODEPAGE_ESMWIN // for orde index
HB_SetCodePage( "ESMWIN" )
This working fine
"Ingo" <ingo.jh@web.de> escribió en el mensaje
news:4376fefe$[email=1@ozsrvnegro.ozlan.local...]1@ozsrvnegro.ozlan.local...[/email]
> Hello,
>
> sorry I am not familiar with xHarbour. Could anybody tell me how to set
> the environment in xHarbour/xailer to building indices (DBFCDX) with the
> correct sequence in german.
> For example:
> Correct is
> "A".."Ä" .. "B" ...... "Z"
> Now the sequence is
> "A" .. "B" ...... "Z" .. "Ä"
>
> I'm using
> REQUEST DBFCDX
> REQUEST HB_LANG_DE
> HB_LANGSELECT( 'DE' )
>
> Is there anything more necessary?
> I think there is the same problem with the special spanish letters.
>
> Thanks in advance
>
> Ingo
>
>

index sequence

Publicado: Lun Nov 14, 2005 9:33 am
por Ingo
Miguel,
thanks for theresponse,
I tried to use the corresponding commands/function
REQUEST HB_LANG_DE
HB_LANGSELECT( 'DE' )
REQUEST HB_CODEPAGE_DEWIN
HB_SetCodePage( "DEWIN" )
and inserted "cpgewin.c" in the project to use HB_CODEPAGE_DEWIN but I got
the error "unresolved external '_hb_uniTabl_8859_1'
I don't know how to go on.
Maybe Ignacio or Jose can help - do they?
Regards
Ingo
"Miguel Torrellas" <miguel@torsat.net> schrieb im Newsbeitrag
news:43770f90$[email=1@ozsrvnegro.ozlan.local...]1@ozsrvnegro.ozlan.local...[/email]
> Hello:
>
> In Sapnish i am using
>
> REQUEST HB_LANG_ES // for messages
> HB_LANGSELECT( "ES" )
>
> REQUEST HB_CODEPAGE_ESMWIN // for orde index
> HB_SetCodePage( "ESMWIN" )
> This working fine

index sequence

Publicado: Lun Nov 14, 2005 9:46 am
por jfgimenez
Ingo,
> and inserted "cpgewin.c" in the project to use HB_CODEPAGE_DEWIN but I got
> the error "unresolved external '_hb_uniTabl_8859_1'
>
> I don't know how to go on.
Add the library xharbourlibcodepage.lib to your project. We'll add it
automatically in the next release.
--
Regards,
Jose F. Gimenez

index sequence

Publicado: Lun Nov 14, 2005 9:46 am
por ignacio
Ingo,
Include in the project as any other file the xHarbour library CODEPAGE.LIB
Regards,
"Ingo" <ingo.jh@web.de> escribió en el mensaje
news:43784bdc$[email=1@ozsrvnegro.ozlan.local...]1@ozsrvnegro.ozlan.local...[/email]
> Miguel,
>
> thanks for theresponse,
> I tried to use the corresponding commands/function
>
> REQUEST HB_LANG_DE
> HB_LANGSELECT( 'DE' )
>
> REQUEST HB_CODEPAGE_DEWIN
> HB_SetCodePage( "DEWIN" )
>
> and inserted "cpgewin.c" in the project to use HB_CODEPAGE_DEWIN but I got
> the error "unresolved external '_hb_uniTabl_8859_1'
>
> I don't know how to go on.
> Maybe Ignacio or Jose can help - do they?
>
> Regards
>
> Ingo
>
> "Miguel Torrellas" <miguel@torsat.net> schrieb im Newsbeitrag
> news:43770f90$[email=1@ozsrvnegro.ozlan.local...]1@ozsrvnegro.ozlan.local...[/email]
>> Hello:
>>
>> In Sapnish i am using
>>
>> REQUEST HB_LANG_ES // for messages
>> HB_LANGSELECT( "ES" )
>>
>> REQUEST HB_CODEPAGE_ESMWIN // for orde index
>> HB_SetCodePage( "ESMWIN" )
>> This working fine
>
>

index sequence

Publicado: Lun Nov 14, 2005 12:34 pm
por Ingo
Thanks to all,
the language and codepage setting with
REQUEST HB_LANG_DE
HB_LANGSELECT( "DE" )
REQUEST HB_CODEPAGE_DE
HB_SetCodePage( "DE" )
is working fine if codepage.lib is included.
Regards
Ingo
"Ignacio Ortiz de Zúñiga" <InvalidAccount@ozs.com> schrieb im Newsbeitrag
news:43784ee5$[email=1@ozsrvnegro.ozlan.local...]1@ozsrvnegro.ozlan.local...[/email]
> Ingo,
>
> Include in the project as any other file the xHarbour library CODEPAGE.LIB
>
> Regards,
>