ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

Procedure/Function
A procedure is used to associate an identifier with a statement block...
Local procedure
Two types of procedures are available...
Declaring a procedure/a function
The different syntaxes for declaring a procedure...
Global procedure/function
A global procedure can be used in all the processes or events of the project.
Parameters of a procedure/function
You have the ability to pass parameters to a procedure.
Procedure (Variable type)
The Procedure type is used to handle through programming:
  • the procedures or methods found in the project.
  • the procedures or methods found in an internal component.
  • the procedures or methods found in an external component.
Calling a procedure/a function
Syntax for calling a local or global procedure.
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.
Procedure Description (Variable type)
The Procedure Description type allows you to get information about a procedure or a method.
Useful parameters of a procedure
A procedure can declare some parameters that are not immediately used. In this case, a warning appears in the code editor, indicating that the local variable is not used.
Internal procedure
Several features require a procedure called once or several times via a WLanguage function ("Callback").
Prototype overload/Overload
The procedures and the methods of classes can have several syntaxes.
RETURN statement
The RETURN statement is used to exit a statement block and the current process (or procedure).
RETURN statement
The RETURN statement is used to exit the current event, process or procedure and return a result...
ExecuteMainThreadAsynchronous (Function)
Executes a procedure in the main thread of the application without waiting for the end of its execution.
WEBDEV: Scheduled tasks and delayed tasks
WEBDEV allows you to implement tasks on the server directly...
Automatic documentation of procedures and methods
To simplify the maintenance or the use of existing code by other developers, WINDEV proposes an automatic documentation for the procedures (or class methods)...
ExecuteMainThread (Function)
Triggers the execution of the procedure specified in the main application thread.
Passing parameters
The parameters can be passed to a procedure...
MyParameters (Reserved word)
The MyParameters keyword is used to handle the parameters passed to a WLanguage procedure...
Optional parameters
Some of the parameters passed to a procedure can be optional parameters...
Reactive procedures
Reactive procedures are executed when the value of a control or variable changes...
SeekProcedure (Function)
Seeks a procedure identified by its name. The procedure found can be run directly.
Set of procedures
The global procedures are grouped in set of procedures...
Automatic procedures
The programming of timers, threads and delayed procedures is now automatically managed by the environment...
Typecasting of parameters
The description of the parameter type is optional...
1
40