ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • List Box, ListView, Combo Box and Table controls based on a data file
  • Limit
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Memory (Property)
In french: Mémoire
The Memory property determines if the specified control is populated programmatically or is based on a data file.
The Memory property applies to List Box, ListView, Combo Box, Table, TreeView Table or Looper controls (depending on the IDE 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 kept for backward compatibility. It is recommended to use the FillType property.
Example
IF LIST_List1.Memory = True THEN
ListAdd(LIST_List1, "Paris")
END
Syntax
<Result> = <Control used>.Memory
<Result>: Boolean
  • True if the content of the control comes from the additions performed by programming.
  • False if the content of the control 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.
Remarks

List Box, ListView, Combo Box and Table controls based on a data file

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

Limit

Java In Java, the Memory property applies only to List Box controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/29/2023

Send a report | Local help