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
Ends the process to populate a Table or TreeView Table control programmatically.
Reminder: The start of fill was specified by TableStartFilling. 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
TableStartFilling(TABLE_Mem)
 
FOR i = 1 TO 10000
TableAddLine(TABLE_Mem)
END
 
TableEndFilling(TABLE_Mem) // Fill operation completed
Syntax
TableEndFilling(<Table control>)
<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.
If this parameter corresponds to an empty string (""), the Table control to which the current event belongs will be used.
Remarks
This function has no effect on the Table controls linked to a File or Query data source.
Component: wd290obj.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Video TableEndFilling
https://youtu.be/GdeJgQRL2Aw

https://windevdesenvolvimento.blogspot.com/2019/05/dicas-2119-windev-tabelas-104.html

// BTN_TableStartFilling_BARRA_PROGRESSO
TableStartFilling(TABLE_BARRA_PROGRESSO)
FOR EACH cliente
TableAddLine(TABLE_BARRA_PROGRESSO,cliente.clienteid,cliente.nome)
END
TableEndFilling(TABLE_BARRA_PROGRESSO)
amarildo
23 May 2019

Last update: 05/26/2022

Send a report | Local help