|
|
|
|
|
- Handling the current page
- Using MyPage in a procedure
- WLanguage functions and current page
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.
TitrePage = MyPage..Title
Nation(nationEnglish)
PageDisplay(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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|