Class to manager MYSQL for Harbour/xHarbour
Custom Search

lunes, 20 de septiembre de 2010

Idioma / Language

> Willi: Hola Daniel,,, el metodo seek no ubica la letra Ñ
> Willi: Hello Daniel, the Method seek doesn't find "Ñ"

No ubica la Ñ ni otro caracter especial
Doesn't find Ñ or other especial char

Nueva funcion/New Function  Set_MyLang( cLocale )
cLocale contienen información sobre cómo interpretar y llevar a cabo ciertas entradas / salidas y las operaciones de transformación, teniendo en cuenta ubicación y el idioma ajustes específicos
cLocale contain information on how to interpret and perform certain input/output and transformation operations taking into consideration location and language specific settings

El  valor de cLocale dependeran por plataforma, para nuestro caso: Window
The value of cLocale will depend of plataform, for own case: Window

LanguageLANGUAGE option value
Chinese, Simplifiedchs
Chinese, Traditionalcht
Englishameng
Frenchfra
Germandeu
Italianita
Japanesejpn
Koreankor
Portuguese, Brazilianptb
Russianrus
Spanishesp

Con esta funcion se podran accesar los caracteres espciales Ñ, ñ, Á, á, É, é, ... el unico incoveniente es que son sencibles a mayusculas y minusculas
With this function we will can access the special char Ñ, ñ, Á, á, É, é, ..., the only problem is them are case sensitive 

Revisar/Check  testfw2.prg

FUNCTION Main() 

   LOCAL oWnd 
   LOCAL oMenu
   LOCAL oServer
   MENU oMenu 2007
      MENUITEM "testing" ACTION DataBrowse( oServer, oWnd )
   ENDMENU
   
   SET CENTURY ON
   SET DATE FORMAT "dd/mm/yyyy"   
      
   //Activated Case sensitive
   D_SetCaseSensitive( .T. )

   Set_MyLang( "esp" )
   
   IF ( oServer := ConnectTo() ) == NIL
      RETURN NIL
   ENDIF
   
   DEFINE WINDOW oWnd TITLE "Testing Dolphin - Fivewin" MENU oMenu
   
   ACTIVATE WINDOW oWnd 
   
   oServer:End()
   
RETURN NIL

Probar y exponer experiencias, Gracias
Test and post experiences, Thanks


No hay comentarios:

Publicar un comentario