AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones multilingües
  • Server/Browser differences
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Changes the value of the separators (decimal separator or thousand separator) used in the numeric masks for internationalization.
To modify the separator:
  • WEBDEV - Código ServidorPHPAjax of the current page: use function ChangeSeparator then redisplay the current page with function PageUse or FramesetUse.
  • WINDEV of the current window: use function ChangeSeparator then redisplay the current window with function Use.
Ejemplo
WEBDEV - Código ServidorAjax
// -- Project initialization code 
// If English is the favorite language of the user
IF CookieRead("PREFERRED_LANGUAGE") = "ENGLISH" THEN
	// Change the captions to English
	Nation(3)
	// Use "." as decimal separator
	ChangeSeparator(sepDECIMAL, ".")
END
Sintaxis
ChangeSeparator(<Separator Type> , <New value>)
<Separator Type>: Integer constant
Specifies the type of separator to modify:
sepCURRENCYSymbol used for the currencies.
sepDECIMALDecimal separator (if the operating system used is the French version of Windows, the decimal separator is the comma (",") by default).
sepTHOUSANDThousand separator (if the operating system used is the French version of Windows, the separator is a space character ("") by default).
<New value>: Character
New value for the specified separator.
Observaciones
WEBDEV - Código ServidorPHPAjax

Server/Browser differences

The value of the separators can differ in development mode and in deployment mode. Indeed, when running a WEBDEV website, the default value of the separators is defined by the regional settings assigned to the user by the Web server.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 28/03/2025

Señalar un error o enviar una sugerencia | Ayuda local