ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
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
Starts the process to populate a Table or TreeView Table control programmatically. The progress of this operation is represented:
  • by an infinite progress bar displayed at the bottom of the control.
  • by an internal window.
Caution: Before using this function, the mechanism for managing the fill operation must be enabled in the control description window. For more details, see Characteristics of Table controls in a window.
Example
TABLE_Mem.StartFill()
 
FOR i = 1 TO 10000
TABLE_Mem.AddLine()
END
 
TABLE_Mem.EndFilling() // Fill completed
Syntax
<Table control>.StartFilling()
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
  • WINDEV a Combo Box control with table.
Remarks
  • At the end of the process for loading the Table control, <Table>.EndFilling must be called to specify that the load operation is complete.
  • This function has no effect on the Table controls linked to a File or Query data source.
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help