Category / Section
How can I make the finish button visible on the last page of the wizard?
Setting the CancelOverFinish property for WizardControlPage to 'false' will make the finish button visible in the WizardControl.
Here is the code snippet:
C#
this.wizardControlPage3.CancelOverFinish = false;VB
Me.wizardControlPage3.CancelOverFinish = FalseSample :