AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / Desarrollar una aplicación o un sitio web / Controles, ventanas y páginas / Controles: tipos disponibles / Mostrar control
  • Overview
  • Initializing a formatted display control (server code)
  • Retrieving the value of a formatted display control (server code)
  • Use example
  • How to display the "last update date: mm/dd/yyyy" in a page:
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Manipulating formatted display controls programmatically
Overview
WEBDEV allows you to manipulate a formatted display control programmatically. To do so, use the variable of the formatted display control in the code.
The variable of the formatted display control corresponds to the name of the formatted display control. The variable type depends on the control type (numeric, text, currency, etc.).
Initializing a formatted display control (server code)
To initialize a formatted display control, a simple assignment of the control variable is sufficient. This initialization must be done in server code. For example:
// Initialize the formatted display control named "FSTC_Date"
FSTC_Date = 19990506 
// You can also use Date.Value = "19990506"
Note:: You can also use the Value or Caption properties.
Retrieving the value of a formatted display control (server code)
To retrieve the content of a formatted display control (static or dynamic) in a server code:
  • perform a simple assignment. For example:
    CurrentDispContent = FSTC_FORMATTED1
  • handle the formatted display control directly. For example:
    Info(LIBF_FORMATE1)
  • use the Value or Caption properties.
Use example

How to display the "last update date: mm/dd/yyyy" in a page:

  1. Creating a formatted display control.
  2. In the initialization code of the control, enter the following code:
    MySelf = fDate(CompleteDir(fExeDir()) + "MonSite.WDL", "", fModify)
    Where "MySite.WDL" corresponds to the WDL for your site.
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 11/03/2025

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