- List Boxes containing more than 10 000 elements
- Visibility/Invisibility of elements in a List Box or Combo Box control
- Equivalence
- Sorted/Unsorted List Box control
- Adding an element onto the browser
- Miscellaneous
<List Box>.Add (Function) In french: <Liste>.Ajoute Adds an element into: - a memory List Box control,
- a memory Combo Box control.
Remarks: - To add an element at a specific position, use <List Box>.Insert.
- <List Box>.Add can be used on the single-selection and multi-selection List Box controls.
- To add an image into a standard List Box control, use gImage.
- To add elements into a Combo Box control found in a container column of a Table control, use Content.
// Add the customer named "Moore" into "LIST_CustomerList" LIST_CustomerList.Add("Moore")
Syntax
<Control to use>.Add([<Element>])
<Control to use>: Control name Name of the control to be used. <Element>: Optional character string Element that will be added into the specified control. If this parameter is not specified, an empty row is added into the List Box or Combo Box control. This parameter can contain:- Carriage Return characters (CR) to add several elements.
- tabs (TAB) to obtain a multi-element List Box control (see Notes).
- gStoredValue to indicate the value that will be returned when the element is selected.
Remarks List Boxes containing more than 10 000 elements The maximum number of elements found in a List Box control is limited by the available memory (theoretical maximum: 2 billion rows). Nevertheless, filling a List Box control with an important number of elements (more than 10 000) affects performance To add many elements to a List Box control, it is recommended to use a browsing List Box control (i.e., a list directly linked to an HFSQL data file). Miscellaneous - To add elements into a Table control, use TableAdd.
- <List Box>.Add can be used on:
- a column of type"Combo Box" in a Table control.
- a "Table" Combo Box control.
This page is also available for…
|
|
|
|