|
|
|
|
|
<Table>.EndFilling (Function) In french: <Table>.FinRemplissage Ends the process to populate a Table or TreeView Table control programmatically. Reminder: The start of filling has been indicated with the <Table>.StartFilling function.. The progress of this operation is represented: - by an infinite progress bar displayed at the bottom of the control.
- by an internal window.
TABLE_Mem.StartFill()
FOR i = 1 TO 10000
TABLE_Mem.AddLine()
END
TABLE_Mem.EndFilling()
Syntax
<Table control>.EndFilling()
<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.
Remarks This function has no effect on the Table controls linked to a File or Query data source.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|