|
|
|
|
|
TableEndFilling (Function) In french: TableFinRemplissage 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.
TableStartFilling(TABLE_Mem)
FOR i = 1 TO 10000
TableAddLine(TABLE_Mem)
END
TableEndFilling(TABLE_Mem)
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.
- 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|