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 / Administrar bases de datos / HFSQL / Funciones de enlace
  • Binding between a control and a WLanguage variable or between a control and a data file item
  • Section updates: Special cases
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
Automatically initializes:
  • the values of a data file's items in memory with the values from the controls in the window. The data file items bound to the window controls are automatically updated with the values of these controls.
  • the value of the WLanguage variables with the value of the window controls. The WLanguage variables bound to the window controls are automatically updated with the values of these controls.
This operation is performed regardless of the state of the controls (grayed, inactive or invisible).
Remarks:
  • The ScreenToSource function cannot be used to write to the data file: only the variables of the data file fields are assigned (i.e. the variables of the record loaded into memory).. To modify the records, use HAdd, HModify, HWrite, etc.
  • WEBDEV - Código ServidorPHP This function is also available for WEBDEV pages. It is equivalent to PageToSource.
  • PHP Only the binding to the data file items is supported. Bindings to WLanguage variables are not supported in this version.
Ejemplo
// Click on "BTN_Add"
ScreenToSource()
HAdd(Customer)
IF HErrorDuplicates() = True THEN Error("This number already exists")
Sintaxis
ScreenToSource([<Window> [, <Source>]])
<Window>: Window name
Name of the window that contains the controls.
Summary: Called when a control gains focus.
PHP If this parameter is specified, it must correspond to the name of the current page. Otherwise, an error occurs.
AndroidJava If this parameter is specified, it must correspond to the name of the current window. Otherwise, an error occurs.
<Source>: Optional character string
Name of the source containing the data to update. This source can be:
  • The name of a data file. In this case, only the controls bound to the items of the data file are taken into account.
  • The name of a WLanguage variable. In this case, only the controls bound to the WLanguage variable are taken into account.
    Remarks:
    • If the name of the variable is enclosed in quotes, the control will be bound to the specified variable.
    • If the name of the variable is not enclosed in quotes, the control will be bound to the variable data (e.g., a variable containing the name of another variable).
If this name is not specified, all the window or page controls that are bound to a data file described in the data model editor or to a WLanguage variable will be taken into account.
Observaciones

Binding between a control and a WLanguage variable or between a control and a data file item

The binding between a control and a WLanguage variable or between a control and a data file item can be determined:
  • In the editor, in the control description window ("Binding" tab).
  • Programmatically, with the DataBinding property.

Section updates: Special cases

  • To automatically assign the NULL value to an item with ScreenToSource:
    1. Check "Aceptar valores NULL" in the data file description.
    2. Check "Permitir valores NULL" for the item in the data model editor.
    3. Check "Devolver NULL si está vacío" in the "Details" tab of the Edit control bound to the item.
  • The items of the data file that are not bound to a control are not updated by ScreenToSource.
  • If multiple controls in the window or page are bound to the same data file item, ScreenToSource may not update the bound item properly. It is not recommended to bind multiple controls of a window or page to the same item.
  • ScreenToSource does not update the items with the values from Image controls. Use the HLinkMemo function.
  • ScreenToSource is not available on views.
  • Link with "Secure password" fields The value of the "Secure password" field is not modified until the user modifies the value in the field linked to the field.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 14
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 23/11/2024

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