Introduction to PowerBuilder

HomePrevious Lesson: Error Handling
Next Lesson: The Abort CommandButton

The Continue CommandButton

To continue with the application, we simply close the w_error window:
// Object: cb_continue in w_error
// Event: Clicked
Close(Parent)

Once PowerBuilder executes the script written for the application's SystemError event successfully, it continues with the execution of the next statement after the error line. As we don't have any more script in the SystemError event, closing this window allows the user to continue with the application.
HomePrevious Lesson: Error Handling
Next Lesson: The Abort CommandButton