|
|
|
|
|
- List control with more than 10,000 elements
- Visibility/Invisibility of elements in a List Box or Combo Box control
- Customizing the elements found in a List Box or Combo Box control
- Sorted/Unsorted List Box control
- Tabs: multi-selection List Box control
- Adding an element to the browser
- Miscellaneous
<List Box>.Insert (Function) In french: <Liste>.Insère Inserts an element into a List Box, ListView or Combo Box control populated programmatically. Remarks: - To add an element at the end of List Box (or Combo Box) control, use <List Box>.Add.
- <List Box>.Insert can be used on single-selection and multi-selection List Box controls
- To manage the contents of a Combo Box control in a container column of a Table control, use the Content property.
LISTE_ListeClient.Insère("Dubois", 4)
Syntax
<Result> = <List Box control>.Insert(<Element> [, <Image> [, <Element index>]])
<Result>: Boolean - True if the element was inserted,
- False otherwise.
<List Box control>: Control name Name of List Box or Combo Box control populated programmatically. <Element>: Character string Element that must be inserted into the specified List Box (or Combo Box) control populated programmatically. This parameter can contain:- Carriage Return characters (CR) to add several rows. In this case:
- if <Element index> is not specified, the elements are added.
- If <Element index> is specified, only the first element will be added.
- tabs (TAB) to obtain a multi-element List Box control (see Notes).
<Image>: Optional character string Name and path of image that will be added into a ListView control. This parameter is taken into account for ListView controls displayed in ListView mode only. If this parameter is not specified, the default image (defined in the "Detail" tab of the control description window) is used..
<Element index>: Optional integer Index of the element to be inserted.If this parameter: - is not specified, the element is inserted:
- before the current element in a single-selection List Box control. If there is no current element, the element is inserted at the last position in the List Box (or Combo Box) control populated programmatically.
- at the last position in the List Box (or Combo Box) control populated programmatically, in a multi-selection List Box control.
- is greater than the number of elements in the List Box (or Combo Box) control, the element is inserted at the last position in the List Box (or Combo Box) control populated programmatically. The number of elements in a List Box (or Combo Box) control is returned by <List Box>.Count.
- is equal to 0, the element is added at the first position in the List Box (or Combo Box) control populated programmatically.
Remarks List control with more than 10,000 elements The maximum number of elements that can be contained in a List Box control is limited only by available RAM (theoretical maximum: 2 billion lines).. Nevertheless, populating a List Box control with a large number of elements (more than 10,000) affects performance. To add a large number of elements, it is recommended to use a List Box control based on an HFSQL data file. Miscellaneous - To insert an element into a Table control, use <Table>.Insert.
- <List Box>.Insert can be used on a "Combo Box" column in a Table control .
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|