AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Tabla
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Ends the process to populate a Table or TreeView Table control programmatically.
Reminder: The start of filling was 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.
Ejemplo
TableStartFilling(TABLE_Mem)  
FOR i = 1 TO 10000
TableAddLine(TABLE_Mem)
END
 
TableEndFilling(TABLE_Mem) // Fill operation completed
Sintaxis
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.
Observaciones
This function has no effect on the Table controls linked to a File or Query data source.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
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 05 2019

Última modificación: 28/03/2025

Señalar un error o enviar una sugerencia | Ayuda local