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
  • Data-bound List Box, ListView, Combo Box and Table controls
  • Limit
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 Memory property determines if the specified control is populated programmatically or is bound to a data file.
The fields to which the Memory are the List, Image control, Combo, Table, Hierarchical Table or RepeatString fields (depending on the product used: WINDEV, WINDEV Mobile or WEBDEV).
Reminder:
  • List Box, ListView, Combo Box, Table, TreeView Table and Looper controls populated programmatically handle data stored in memory.
  • List Box, ListView, Combo Box, Table, TreeView Table and Looper controls based on a data file handle data from data files or queries.
Important: This property is retained by compatibility. It is recommended to use the FillType property.
Ejemplo
IF LIST_List1.Memory = True THEN
ListAdd(LIST_List1, "Paris")
END
Sintaxis
<Result> = <Control used>.Memory
<Result>: Boolean
  • True if the content of the field comes from programmed additions.
  • False if the field content comes from a data file.
<Control used>: Control name
Name of the control (List Box, ListView, Combo Box, Looper, Table or TreeView table) to handle.
Observaciones

Data-bound List Box, ListView, Combo Box and Table controls

The following properties define the records that will be displayed.
  • BrowsedFile: Name of the base data file.
  • BrowsedItem: Name of the item used to loop through the data file and sort records.
  • Filter: If this filter is not empty, only the records corresponding to the filter will be displayed.
  • AutoBrowse: Indicates whether the path events associated with the element are used.

Limit

Java In Java, the Memory property applies only to List Box controls.
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: 13/05/2025

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