|
|
|
|
|
TableStartFilling (Function) In french: TableDébutRemplissage 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.
TableStartFilling(TABLE_Mem)
FOR i = 1 TO 10000
TableAddLine(TABLE_Mem)
END
TableEndFilling(TABLE_Mem)
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.
- a Combo Box control with table.
If this parameter is an empty string (""), the Table control of the current event 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|