AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones List Box
  • 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
  • Miscellaneous
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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 ListAdd.
  • ListInsert 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.
Ejemplo
// Add "Clark" in 4th position to "LIST_CustomerList"
ListInsert(LIST_CustomerList, "Clark", 4)
WINDEVCódigo de Usuario (UMC)
// Add the "C:\MyImages\CoralReef.JPG" image in 5th position to "LSV_Diving"
// The caption of this image will be "Nice coral"
ListInsert(LSV_Diving, "Nice coral", "C:\MyImages\CoralReef.JPG", 4)
Sintaxis
<Result> = ListInsert(<List Box control> , <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.
If this parameter corresponds to an empty string (""), the element is inserted in the List Box or Combo Box control to which the current process belongs.
<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).
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 <Image> and <Element index> are not specified, the added elements will be associated with the default image (defined in the "Details" tab of the control description window).
  • if <Image> and <Element index> are specified, only the first element will be added. This element will be associated with the default image (defined in the "Details" tab of the description window of control).
  • if <Image> is specified and if <Element index> is not specified, only the first element will be added. This element will be associated with the specified image.
Java The Carriage Return characters (CR) and the tabulations (TAB) are not supported.
<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 ListCount.
  • is equal to 0, the element is added at the first position in the List Box (or Combo Box) control populated programmatically.
Observaciones

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.
WINDEVJavaCódigo de Usuario (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.
WINDEVCódigo de Usuario (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, drawing, etc.), use Graphic string functions.
WINDEVJavaCódigo de Usuario (UMC)

Sorted/Unsorted List Box control

  • If the List Box control is sorted, the new element is inserted at the current position without sorting the list box.
  • If the List Box control is not sorted, the new element is added:
    • at <Element index> if <Element index> is specified.
    • before the current element in a single-selection List Box control if the <Element index> parameter is not specified. 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 of the List Box (or Combo Box) control populated programmatically in a multi-selection List Box control, if the <Element index> is not specified.
The type of the List Box control (sorted or not) is selected during the control description ("Details" tab).
Use ListAdd rather than ListInsert to add an element to a sorted List Box control.
WINDEVCódigo de Usuario (UMC)

Tabs: multi-selection List Box control

To manage the tabulations in a List Box control (alignment of columns), use the TAB constant. For example:
ListInsert(LIST_Customer, LastName + TAB + FirstName)
In this example, all the first names start at the same position and are aligned one under the other.
Note The first call to the ListInsert function sets the tab position. 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 ListInsert, we advise you to define the width of columns with Complete. For example, to fix the width of columns found in "LIST_Customer" to 10 characters:
ListInsert(LIST_Customer, Complete(LastName, 10) + TAB + Complete(FirstName, 10))

Miscellaneous

  • To insert an element into a Table control, use TableInsert.
  • ListInsert can be used on a "Combo Box" column in a Table control .
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Exemplo ListInsert
ListInsert(LIST_List,"Primeiro",1)
ListInsert(LIST_List,"Segundo",2)

ListInsert(LSV_Listview, "Imagen 1","D:\_GRAVACOES\Amarildo\Blog_Mandar_imagem\2016-10-04_1348.png", 1)
ListInsert(LSV_Listview, "Imagen 2","D:\_GRAVACOES\Amarildo\07112016_segunda\001\Video_Falta_1000.png", 2)

//Blog com Video E Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/11/aula-962-curso-windev-listbox-007.html
https://www.youtube.com/watch?v=M1jF2-ouHiw


De matos
04 12 2016

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local