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
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, 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
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 is an empty string (""), the Table control of the current event will be used.
Observaciones
  • 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.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
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 05 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 05 2019

Última modificación: 28/03/2025

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