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
TableStartFilling(TABLE_Mem)
 
FOR i = 1 TO 10000
TableAddLine(TABLE_Mem)
END
 
TableEndFilling(TABLE_Mem) // Fill operation completed
Syntax
TableStartFilling(<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
  • At the end of the process for loading the Table control, TableEndFilling 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 22
This page is also available for…
Comments
exemplo barra progresso tabela
https://youtu.be/K2iWoJy_Uek
https://windevdesenvolvimento.blogspot.com/2021/05/dicas-3319-windev-webdev-mobile-barra.html
TableDeleteAll(TABLE_reference)
TableStartFilling(TABLE_reference)
FOR EACH cliente_wd
TableAddLine(TABLE_reference,cliente_wd.cliente_wdID,cliente_wd.nome)
END
TableEndFilling(TABLE_reference)
amarildo
02 May 2021
Video TableStartFilling
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