ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

LOOP statement
The statement block is repeated endlessly...
FOR EACH statement (loop through a jsonReader variable)
The FOR EACH statement loops through a variable of type jsonReader in various ways:
  • 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...
Compound statements
The report editor allows you to create "Label" reports...
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.
GOTO statement
The GOTO statement is used to run a code identified by a label...
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.
WHILE statement
In a WHILE statement, the expression is evaluated at each beginning of the block of statements...
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)...
How to browse the directories of a disk?
This help page explains how to browse the directories found on a disk....
FAA: Data export (Table field, Hierarchical Table, RepeatString, Tree, ...)
You want to perform simulations with Excel, Word, OpenOffice......
Configuring the AAF menus (Automatic Application Features)
WINDEV includes several Automatic Application Features (AAFs)......
How to choose the data source of a control?
This help page presents the different data sources available for a control....
Browser management functions
List of functions for managing browsers...
How to sort the result of a query?
This help page explains how to create a sort query with the query editor....
xmlReader (Type of variable)
The xmlReader type is used to read an XML document without loading it in memory.
How to create an SQL query to get a sum?
This help page explains how to create a Sum query with the query editor....
How to create an SQL query to count?
This help page explains how to create a count query with the query editor....
How to manage a multi-selection in a Table control?
This help page explains how to manage a multi-selection in a Table control....
AAFExportSecurity (Function)
Secures the export of confidential data in the AAFs (Automatic Application Features) that are used...
WinRefreshVisible (Function)
Modifies or returns the visibility state of the refresh bar in a window.
13. Types of standard controls
JITc
The principle of JITc technology (Just In Time Compilation) is straightforward......