Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
547 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
In the previous part of the lesson you learnt how to resume from an error handler at the line which caused the error, or the one immediately following it. In this part of the lesson, you'll learn how to resume from an error at any point within a procedure.
You can click here to download the file for this part of the lesson.
You can click here to download a file containing the sample code.
Extract and open the workbook linked to in the Files Needed section above. You'll find a workbook which allows you to search for hit and flop films by clicking buttons on the Menu worksheet:
Click the Find Hit Film button and enter the name of a film into the input box which appears.
When the film you have searched for is found, you'll see a message providing you with information:
You'll see a message similar to this one when the film name is found.
When the film cannot be found, an error handler ensures that you see a user-friendly error message rather than a standard run-time error message:
This is the type of message you'll see when the film name is not found in the list.
When you click OK on the error message the subroutine simply ends. We'd like to provide the user with a choice to perform another search immediately.
The first step is to modify the error message to provide the user with a choice of buttons to click and to capture their response in a variable. In the VBE, find the Find_Hit_Film subroutine and declare a variable to capture the user response at the top of the procedure:
Use the VbMsgBoxResult type to declare the variable.
Scroll to the bottom of the subroutine and find the error handling section which begins with the FilmNotFound line label:
Find this section at the bottom of the subroutine.
Modify the message box so that it displays Retry and Cancel buttons and assign the result of the MsgBox function to the variable you have just declared:
Your code should now look like this.
You can test the code by clicking the Find Hit Film button on the Menu worksheet and entering some text which will not be found in the list on the Hits worksheet:
The user now has a choice of button to click when the film they have searched for does not exist.
Now that the user has a choice of button to click we can test their response and take the appropriate action. If the user clicks the Retry button, we want to return to the line of code which asked them to enter a film name:
The line which causes the run-time error is shown highlighted in yellow. The line we want to resume at is shown highlighted in blue.
If we wanted to return to the line which caused the run-time error we could use the Resume statement. If we wanted to return to the line after the one which caused the error we could use the Resume Next statement. In this case, however, we want to return to a different line of code entirely. In order to locate this line we can add a line label immediately above it:
Add a line label above the instruction which displays the input box.
In the error handling section we can use an If statement to test if the user clicked the Retry button:
Add an If statement to the end of the error handling section as shown here.
If the condition is met, we can use the Resume statement to instruct the code to return to the line label we have just created:
Enter Resume followed by the line label at which you want to continue running the code.
It's important to use Resume and not GoTo in this example. The GoTo keyword does not deactivate the active error handler. This causes problems if another run-time error is generated before the subroutine ends.
We can complete the If statement using an Else clause which will return the user to the Menu worksheet and then end the procedure if they do not click Retry:
If the user does not click the Retry button, the code will return the user to the Menu worksheet and the subroutine will end.
You can test that the system works by returning to the Menu sheet and clicking the Find Hit Film button. Try entering the name of a film which doesn't exist in the Hits sheet:
Enter the name of a film and click OK on the input box.
Click Retry on the message box which appears:
Click the button shown here.
You should find that you are prompted to enter a new film name immediately:
You can enter a new film name and click OK to ensure that the system behaves as expected.
You'll see a message similar to this one when the film you are looking for is found in the list.
Test the system again but this time click the Cancel button when the error message appears:
Click the button shown here when the error message appears.
This time you will be taken back to the Menu worksheet.
To practise resuming at a specific line of code:
Declare a VbMsgBoxResult variable.
Scroll to this section of code.
Alter the code as shown here.
Enter a line label above the instruction which displays the input box.
Begin the If statement as shown here.
Resume at the line label you have just created.
Complete the If statement as shown here.
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.