|
|
|
|
|
- Overview
- Programming in WLanguage
- Passing parameters to an internal page
Handling an Internal Page control through programming
The Internal Page control is used to display an existing internal page. Several operations can be performed on the Internal Page control through programming. Caution: Do not confuse "Internal Page control" and "Internal page": the "Internal page" control is a type of control while the "Internal page" is a type of page. Passing parameters to an internal page To pass parameters to an internal page, we advise you to: - Create an initialization procedure in the internal page.
- Call this procedure in the page that contains the "Internal Page" control.
Example: // -- PAGE_Page1 initialization code // MyInternalPage is a PAGE_Page1 control // that is linked to an internal page // This internal page contains a // procedure Init() MyInternalPage.Init(Param1, Param2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|