Dynamically changes the page displayed in an Internal Page control. During this modification, parameters can be passed to the new internal page.
// Load IPAGE_InternalPage
// in IPAGE_InternalPageControl
ChangeSourcePage(IPAGE_InternalPageControl, IPAGE_InternalPage)
Syntax
ChangeSourcePage(<Internal Page control> , <Internal page> [, <Parameter 1> [... [, <Parameter N>]]])
<Internal Page control>: Control name
Name of the Internal Page control that will be modified.
<Internal page>: Name of internal page
Name of the internal page that will be associated with the Internal Page control.
<Parameter 1>: Type corresponding to the parameter (optional)
First parameter that will be passed to the internal page.
<Parameter N>: Type corresponding to the parameter (optional)
Nth parameter that will be passed to the internal page.
Remarks
Events run when changing the internal page
The following events are executed when ChangeSourcePage is called:
- "Before unloading the internal page". This event is associated with Internal Page control.
- "Close" event of the previous internal window.
- "Global declarations" of the new internal page.
- "Initialization" event of the controls in the new internal page.
- "Initialization" event of the internal page.
- "After loading the internal page". This event is associated with the Internal Page control.
- The names and parameters of the called functions must be identical on both pages.
- If a control of the internal page is used directly from outside, there must be a control with the same name in the new internal page.
- The values of global variables for the previous internal page are lost.
The
SourcePage property returns the name of the internal page currently displayed in an Internal Page control.
Business / UI classification: UI Code