WizardNext

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 WizardNext( SalNumber nWhat, SalString sStep )

The WizardNext hook method is called by the framework when the user selects the Next button. Applications should override this method to add extra checks to see if the Next operation is available, or extra statements to be executed when the user chooses Next.

Parameters

Name Description
SalNumber nWhat Standard method parameter. Possible values are Const.METHOD_Inquire, Const.METHOD_Execute.
SalString sStep Name of the next step - the step that will be activated after this method returns.

Returns

When nWhat = Const.METHOD_Inquire: applications should return TRUE if the Next operation is available, FALSE otherwise.

When nWhat = Const.METHOD_Execute: applications should return TRUE if the Next operation was successfully performed, FALSE otherwise.

Comments

If standard behavior is desired, there is no need to override this method.