ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Ends the process to populate a Table or TreeView Table control programmatically.
Reminder: The start of filling has been indicated with the TableStartFilling function.. The progress of this operation is represented:
  • by an infinite progress bar displayed at the bottom of the control.
  • by an internal window.
Warning: Before using this function, you must activate the fill management mechanism 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 is an empty string (""), the Table control of the current event will be used.
Remarks
This function has no effect on the Table controls linked to a File or Query data source.
Component: wd300obj.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: 09/30/2024

Send a report | Local help