ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / List Box functions
  • Miscellaneous
  • Native SQLServer Connector
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
Refreshes a List Box, ListView or Combo Box control based on a data file. List Box, ListView or Combo Box controls populated programmatically are automatically refreshed
WINDEVWINDEV Mobile This refresh operation can be performed from a given position.
Remark: ListDisplay can be used on single-selection and multi-selection List Boxes.
Example
// Refresh the "LOOP_ProductLooper" control
ListDisplay(LIST_CustomerList)
WINDEVReports and QueriesUniversal Windows 10 AppAndroidJavaUser code (UMC)
// Refresh "LOOP_ProductLooper" from the beginning of the List Box control
ListDisplay(LIST_CustomerList, taStart)
Syntax
ListDisplay(<List Box control> [, <Position>])
<List Box control>: Control name
Name of the List Box, ListView or Combo Box control based on a data file to be refreshed.
If this parameter corresponds to an empty string (""), the List Box, ListView or Combo Box control to which the current event belongs is refreshed.
<Position>: Integer or constant (optional)
Indicates the start position for the refresh. This parameter can correspond to:
  • an integer. The refresh is performed from this position. The selected element is not modified. ListDisplay has no effect if this parameter is invalid.
  • a constant:
    taCurrentFirst
    • Refreshes the List Box control from the current record in the data file.
    • The first row of the List Box control is selected. This row corresponds to the current record of the control.
    taCurrentSelection
    • Refreshes the List Box control from the position of the selection bar.
    • The position of selection bar is not modified.
    PHP This constant is not available.
    taInit
    • Runs the initialization events of the List Box control (initializing and end of initialization events).
    • Fills the List Box control.
    • The first row of the List Box control is selected. This row corresponds to the first record displayed in the control.
    taNoUpdEditCbIf the control is an editable Combo Box control, the edit control associated with the Combo Box control is not modified according to the new content of the list.
    If this constant is not used, the edit control associated with the Combo Box is modified by default.
    This constant can be combined with the other constants.
    Universal Windows 10 AppPHP This constant is not available.
    taReExecuteQuery
    • Re-runs the query (for the List Box controls on embedded queries only).
    • Refreshes the List Box control and sets the selection bar at the beginning of the list.
    • The first row of the List Box control is selected. This row corresponds to the first record displayed in the control.
    taStart
    • Refreshes the List Box control and sets the selection bar at the beginning of the list.
    • The first row of the List Box control is selected. This row corresponds to the first record displayed in the control.
WEBDEV - Server code This parameter is not available.
Remarks

Miscellaneous

  • To refresh the Table controls, use TableDisplay.
  • ListDisplay can be used on a "Combo Box" table column.
WINDEVNative Connectors (Native Accesses)

Native SQLServer Connector

If ListDisplay handles a List Box control linked to a data file accessed by the Native SQLServer Connector, we recommend that you use the taCurrentFirst and taStart constants.
Component: wd290obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Video ListDisplay
https://youtu.be/zgG9p1qKi-A

https://windevdesenvolvimento.blogspot.com/2019/04/dicas-2065-windev-webdev-mobile-combox.html

// QRY_CLIENTES_COMBOX
SELECT
cliente.clienteid AS clienteid,
cliente.nome AS nome
FROM
cliente
WHERE
cliente.clienteid>{parametro_cliente}
ORDER BY
nome ASC

// BTN_ATUAZLIA_COMBOX_LISTDISPLAY

QRY_clientes_combox.parametro_cliente=EDT_ID
HExecuteQuery(QRY_clientes_combox,hQueryDefault)
ListDisplay(COMBO_QRY_clientes_combox)

amarildo
04 Apr. 2019

Last update: 06/07/2022

Send a report | Local help