ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / Developing an application or website / Controls, windows and pages / Controls: Available types / ListView control
  • Overview
  • Initialization code of a programmed ListView control
  • HFSQL thumbnails
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
ListView control linked to a data file (or to a query)
Overview
A ListView control can be used to display the content of a data file (or the content of a query).
When a ListView control is linked to a data file (or to a query), this control can be initialized with the content of the data file:
  • or automatically: No specific code is required to initialize the ListView control.. The options to loop through the data file linked to the control can be defined in the "Content" tab of the control description.
  • or by programming: you need to enter the path code of the data file linked to the List Box control in the field initialization code.. This method is not recommended.
The content of two different items is displayed in the ListView control:
  • an item corresponding to the captions ("Text" item for example).
  • an item corresponding to the images ("Sound, Image, Binary" item for example).
Remark: When creating a ListView control, the wizard offers to create the different types of image lists. For a ListView control linked to a data file or to a query, the wizard asks for the necessary information (data file used, items used, etc.).
Initialization code of a programmed ListView control
If you are using a ListView control based on a data file with programmed initialization, the code for browsing the data file must be entered in the initializing code of the control.
Example: Initializing a ListView control with photographs from the VOYAGE data file..
// -- Initialization code of ListView control
HReadFirst(TRAVEL, Photo)
WHILE NOT HOut()
	ListAdd(LSV_TravelPhoto, TRAVEL.Photo)
	HReadNext(TRAVEL, Photo)
END
HFSQL thumbnails
The item linked to the images displayed in the ListView control can use HFSQL thumbnails. In this case, the display of images will be optimized.
For more details, see HFSQL thumbnails.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/05/2024

Send a report | Local help