ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage syntax / Reserved keywords
  • Handling the current page
  • Using MyPage in a procedure
  • WLanguage functions and current page
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
MyPage (Reserved word)
In french: MaPage
MyPage is used to handle the current page. When the page is run, MyPage is replaced with the page (and not by the name of the page). The MaPage keyword is then used as a page.
Why: The MaPage keyword can be used to make local (field, button, etc.) or global (global procedure, class, etc.) code independent of the current page.
Example
// Récupération du titre de la page en cours
TitrePage = MyPage..Title
// Bouton de changement de langue
Nation(nationEnglish)
PageDisplay(MyPage)
Syntax
MyPage
Remarks

Handling the current page

  • MyPage is always replaced with the current page.
  • MyPage can only be used in the processes that handle the current page (processes associated with a control, with a page, ...). MyPage cannot be used in a report.
  • MyPage can only be used from a process or from a procedure of the page.

Using MyPage in a procedure

MyPage can be used in a local or global procedure only if the procedure handles the current page. The keyword MaPage then refers to the current page.
In the case of a local procedure, the MaPage keyword corresponds to the page to which the procedure belongs.

WLanguage functions and current page

To specify the current page in the WLanguage functions that accept a page name as parameter, use:
  • an empty string,
  • MyPage.
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help