> 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
Language | LANGUAGE option value |
---|---|
Chinese, Simplified | chs |
Chinese, Traditional | cht |
English | ameng |
French | fra |
German | deu |
Italian | ita |
Japanese | jpn |
Korean | kor |
Portuguese, Brazilian | ptb |
Russian | rus |
Spanish | esp |
fuente/source: http://publib.boulder.ibm.com/infocenter/tsminfo/v6/index.jsp?topic=/com.ibm.itsm.srv.install.doc/r_nls.html
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. )
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