WizardPageLoad

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalBoolean WizardPageLoad( SalString sParentObject,
		        SalString sWindow,
		        SalString sResource,
		        SalString sTitle )

The WizardPageLoad method registers a Form Window, Table Window or Dialog Box to dynamically be added inside a wizard dialog box as an extra step.

Parameters

Name Description
SalString sParentObject The wizard dialog box which the form is to be added
SalString sWindow Name of the window that should be added to the wizard
SalString sResource The resource name to display as the picture with the wizard If no picture is needed, value should be null.
SalString sTitle Title that shall be used for the wizard step. Should be a translatable constant.

Returns

Unused. Applications should ignore the return value.

Comments

This method is very useful when integrating the user interfaces for different modules. Using Var.Component.WizardPageLoad in one module can cause one of it's own windows to appear inside a wizard belonging to another module.

Example

! Add extra step to parties wizard
Call Component.WizardPageLoad( 'dlgWizardParty',  'frmMyPartyExtra',
    'bmpMyPartyExtra', 'bmpMyPartyExtra', TEXT_MyPartyExtra )