ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

LOOP statement
The statement block is repeated endlessly...
FOR EACH statement (loop through a jsonReader variable)
Using the FOR EACH statement on a variable of type jsonReader allows for different types of loops:
  • Loop through a level.
  • Loop through a level with copy.
  • In-depth loop.
Note: This feature is only available from version 2025 Update 3.
RETURN statement
The RETURN statement is used to exit the current event, process or procedure and return a result...
CONTINUE statement/"CONTINUE:" label
The CONTINUE keyword can correspond:
  • to the CONTINUE instruction. It allows you to go back to the beginning of the first iteration without finishing the code of the current iteration.
  • to the CONTINUE: label. It allows you to declare a common code in a loop.
Compound statements
BREAK statement/"BREAK:" label
The keyword BREAK can correspond:
  • to the BREAK statement: it allows you to exit a set of instructions and run the rest of the current process.
  • to the BREAK label: it allows you to declare a section of code in a loop. This code will be run when exitingfrom the loop with a "BREAK" statement.
FOR statement
The statement block is repeated while a control variable is modified and compared to a limit value (before each beginning of statement block)...
WHILE statement
In a WHILE statement, the expression is evaluated at each beginning of the block of statements...
GOTO statement
The GOTO statement is used to run a code identified by a label...
CurrentIndex (Function)
of the current row in the current Looper control, the index of the current indexed control....
Filter (Property)
Box controls based on a data file, browsing Looper controls....
SortOption (Property)
attributes of Looper controls, images, clickable images and thumbnails with automatic sequence....
Linking a Combo Box control to a data file
A List Box or Combo Box control can be used to display the content of a data file, to allow a user...
GalleryPopupDisplayed (Function)
Indicates whether the automatic zoom popup of the Image Gallery control is displayed.
Code indentation
is automatically indented to highlight the structure of the loops used in the program......
AnimationDuration (Property)
... Gallery Looper control.
List Box control linked to a data file or to a query
A List Box or Combo Box control can be used to display the content of a data file or query,...
How to perform a full file browse?
RepeatedZoneAddStart (Function)
Adds a repeat (or line) at the beginning of a field Infinite repeat zone. The repeat is inserted...
NewLine (Property)
was created with TableAddXXX or TableInsertXXX. in a Looper control, whether the current row was created...
Gesture variable
The Gesture variable is used to retrieve the gesture parameters (swipe)......
FOR ALL/FOR EACH statement (browse of strings)
The FOR EACH statement is used to browse strings according to different methods...
FOR EACH/FOR ALL statement (browse of associative arrays)
The FOR EACH statement is used to perform different types of browse on the associative arrays...
How to create an SQL query to filter records?
This help page explains how to create an SQL query to filter records....
Handling a Popup control through programming
The popup being a control of the page, you have the ability to access: the page controls...
FOR EACH/FOR ALL statement (browse of arrays)
The FOR EACH statement is used to perform different types of browse on the arrays...
Empty (Property)
The Empty property is used to determine if: a Looper, Table, List Box or Combo Box control...
The Upload control
The Upload control is used to upload files on the Web server......
Configuring the AAF menus (Automatic Application Features)
WINDEV includes several Automatic Application Features (AAFs)......
FOR EACH/FOR ALL statement (browse of enumerations)
The FOR EACH statement is used to browse the available values in the enumerations.
FOR EACH/FOR ALL statement (browse of combinations)
The FOR EACH statement is used to browse the available values in the combinations.
How to browse the directories of a disk?
This help page explains how to browse the directories found on a disk....
How to sort the result of a query?
This help page explains how to create a sort query with the query editor....
1
6
7
8
9
10
21
>