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 / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
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
The SynchroHFSQL property is used to:
  • know how to refresh a Table control linked to an HFSQL Client/Server data file.
  • specify the refresh mode of a Table control bound to an HFSQL Client/Server data file.
Note: This property is equivalent to the "Synchronize display" option in the "Contents" tab of the Table control description window:
Synchronizing the display
Ejemplo
// Defines the refresh mode of Table control
TABLE_Customer.SynchroHFSQL = syncModification
// Modification of the Client/Server HFSQL data file linked to the field
CUSTOMER.ZC = 34980
HModify(CUSTOMER) 
// The Table control will be automatically refreshed if this customer is visible in the control
Sintaxis

Learn how to refresh a Table control linked to an HFSQL Client/Server data file Ocultar los detalles

<Result> = <Table control>.SynchroHFSQL
<Result>: Integer constant
Current refresh mode:
syncAdditionSynchronization when adding a record into the data file.
syncNoneNo synchronization is performed.
syncModificationSynchronization when modifying a record in the data file
syncDeletionSynchronization when deleting a record from the data file
<Table control>: Control name
Name of the Table control to be used. This field is linked to a data file.

Modify the refresh mode of a Table control linked to an HFSQL Client/Server data file Ocultar los detalles

<Table control>.SynchroHFSQL = <New mode>
<Table control>: Control name
Name of the Table control to be used. This field is linked to a data file.
<New mode>: Integer constant (or combination of constants)
New refresh mode:
syncAdditionSynchronization when adding a record into the data file.
syncNoneNo synchronization is performed.
syncModificationSynchronization when modifying a record in the data file
Please note: Only lines displayed by the Table control (i.e. visible) can be modified automatically when editing the linked HFSQL data file.
syncDeletionSynchronization when deleting a record from the data file

Note: It is possible to combine the constants syncAdd, syncModification constants and syncDelete constants.
Please note: As the number of cases managed increases, so does the server load..
Observaciones
  • This property is ignored for:
    • Table fields linked to an HFSQL Classic data file,
    • Table fields manipulating data files via a Native Access connector,
    • table populated programmatically, etc.
  • Caution: Enabling this feature increases server load when displaying the Table control or when moving within the field.
  • The modifications performed in the data file can come from the same application, from another application on the same computer or from another application on another computer.
Versión mínima requerida
  • Versión 23
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 04/04/2025

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