ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / List Box functions
  • 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
  • Customizing the elements found in a List Box or Combo Box control
  • Tabulations: Multi-element List Box control
  • Miscellaneous
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Adds an element to:
  • a List Box control populated programmatically,
  • WINDEVJava a ListView control populated programmatically,
  • WINDEV a Carousel control,
  • a Combo Box control populated programmatically.
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 to a standard List Box control, use gImage.
  • To add elements to a Combo Box control found in a container column of a Table control, use Content.
Example
// Add the customer named "Moore" into "LIST_CustomerList"
LIST_CustomerList.Add("Moore")
WINDEVUniversal Windows 10 AppJavaUser code (UMC)
// Add the customers named "Clark" and "Smith" into "LIST_CustomerList"
LIST_CustomerList.Add("Clark" + CR + "Smith")
WINDEVJavaUser code (UMC)
// Add the "C:\MyImages\CoralReef.JPG" image into the "LSV_Diving" listview control
// The caption of this image will be "Nice coral"
LSV_Diving.Add("Nice coral", "C:\MyImages\CoralReef.JPG")
WINDEVUniversal Windows 10 AppJavaUser code (UMC)
// The "COMBO_Title" Combo Box displays personal titles:
// "Mister", "Madam" and "Miss".
// An integer representing a gender will be returned to the language.
COMBO_Title.Add("Mister" + gStoredValue("1"))
Syntax
<Result> = <Control to use>.Add([<Element> [, <Path of image to display>]])
<Result>: Boolean
  • True if the element was added,
  • False otherwise.
<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.
WINDEV For a Carousel control, the content of this parameter is displayed in the upper-left corner of the Carousel control.
WINDEVJava For a ListView control, this parameter corresponds to the image caption. This parameter can contain Carriage Return characters (CR) to add several elements. In this case:
  • if <Path of image to display> is not specified, the added elements will be associated with the default image (defined in the "Details" tab of the description window of control).
  • if <Path of image to display> is specified, only the first element will be added. This element will be associated with the specified image.
Java The Carriage Return characters (CR) are supported while the tabulations (TAB) are not supported.
<Path of image to display>: Optional character string
Name and path of image that will be added into a ListView control. You also have the ability to use an image memo item.
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 "Details" tab in the description window of control) will be used.
Universal Windows 10 App This parameter is not available.
Remarks

List Boxes containing more than 10 000 elements

The maximum number of elements in a List Box control is only 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 List Box control based on a data file (i.e., a list directly linked to an HFSQL data file).
WINDEVJavaUser code (UMC)

Visibility/Invisibility of elements in a List Box or Combo Box control

To make an element invisible in a List Box or Combo Box control, use gStoredValue.
WINDEVUniversal Windows 10 AppJavaUser code (UMC)

Equivalence

The two following syntaxes are equivalent:
<Control name>.Add([<Element>])
and
<Control name>[Index] = <Element>
WINDEVUniversal Windows 10 AppJavaUser code (UMC)

Sorted/Unsorted List Box control

  • If the List Box control is sorted, the new element is inserted according to the sort order.
  • If the List Box control is not sorted, the new element is added at the end of the list.
The control type (sorted or not) is chosen during the control description ("Details" tab).

Use <List Box>.Add rather than <List Box>.Insert to add an element to a sorted List Box control.
WINDEVUser code (UMC)

Customizing the elements found in a List Box or Combo Box control

To customize the elements in a List Box or Combo Box control (background color, image, design), use Graphic string management functions.
WINDEVUser code (UMC)

Tabulations: Multi-element List Box control

To manage the tabulations in a List Box control (for aligning columns), use the TAB constant. For example:
LIST_Customer.Add(LastName + TAB + FirstName)
In this example, all the first names start at the same position and are aligned one under the other.
Remark: The first call to <List Box>.Add defines the position of tabulations. These positions will be taken as reference for all values added thereafter. Similarly, if values have been typed entered in the editor, the positions of these values are taken as reference. During the first call to <List Box>.Add, we advise you to define the width of columns with <Ansi string type>.Complete. For example, to fix the width of columns found in "CUSTOMERS" to 10 characters:
LIST_Customer.Add(Complète(LastName, 10) + TAB + Complète(FirstName, 10))

Miscellaneous

  • To add elements into a Table control, use <Table>.Add.
  • <List Box>.Add can be used on:
    • a column of type "Combo Box" in a Table control.
    • a "Table" Combo Box control.
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/19/2023

Send a report | Local help