|
|
|
|
|
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) // 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.
- 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|