ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Parameters of a procedure with a variable number of parameters
When the procedure uses a variable number of parameters, you must be able to handle the different parameters passed to the function in the code of the procedure....
<Window>.EdActive (Function)
Allows you to: determine if the "Allow end users to modify the UI" option is enabled in a window (or internal window). enable or disable the "Allow end users to modify the UI" option in a window (or internal window)....
InstantMessaging (Type of variable)
The InstantMessaging type is used to define the advanced characteristics of the instant messaging of a contact (Google Talk, Skype, MSN, etc.).
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....
Declaring and using a variable
A variable is defined by name and type......
Native PostgreSQL Connector for WINDEV and WEBDEV
WINDEV and WEBDEV propose a Native Connector to PostgreSQL......
3. Handling files on an FTP server
FTP (File Transfer Protocol) is a protocol for transferring files from one site to another....
How to develop a PHP site?
What is a PHP site?......
28. Site SEO
20. Managing suggestions and incidents
Managing suggestions and incidents...
Report blocks
A printed report includes several sections......
Managing main window menus
A main menu is necessarily associated with a window......
Replication management functions
Three types of replication are proposed......
Handling a Check Box control through programming
WINDEV, WINDEV Mobile and WEBDEV allow you to handle a Check Box control through programming......
Customizing the report viewer (preview)
You can display a print preview in the report viewer......
Query
A query is used to interrogate a database in order to view, insert, modify or delete data......
Speech synthesis in the mobile applications
The phones can talk!......
ScreenshotAllowed (Property)
The ScreenshotAllowed property is used to: Determine whether it is possible to take screenshots of a window, Allow or prevent taking screenshots of a window....
Managing Google calendars
The Google Calendar service is an Internet application provided by Google that is used to manage a calendar on Internet......
Additional setup modules
The setup wizard allows you to include additional modules in the setup. The additional modules are used to add additional options to the setup program and to access the advanced setup parameters....
SearchAAF (Property)
The SearchAAF property is used to: find out whether the search via AAF is enabled on a non-editable Combo Box control, enable (or not) the search via AAF on a non-editable Combo Box control....
Android: Conditions for using the Map control
Up to WINDEV Mobile version 180046, the Google Maps API library was required to use a Map control in an Android application......
DynamicTab (Property)
The DynamicTab property is used to: Find out the type of a Tab control (static tab or dynamic tab). Modify the type of a Tab control (static tab or dynamic tab)....
HierarchicalDepth (Property)
The HierarchicalDepth property is used to: Find out the depth of a hierarchical control in a report. Modify the depth of a hierarchical control in a report (only if the report uses a data source through programming)....
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....