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 ...
Software ==> | Excel VBA Macros (52 exercises) |
Topic ==> | Looping over collections (11 exercises) |
Level ==> | Harder than average |
Subject ==> | VBA training |
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
In the word game Hangman, a player tries to guess the letters of a hidden word:
The word to be guessed is "hidden" by dint of the fact that it's written in white font on a white background!
Write VBA code to allow you to play the game with a friend (your computer, possibly). A good start would be to hide all of the shapes which make up the gallows, using code something like this:
Sub HideGallowsInitially()
Dim GallowsShape As Shape
For Each GallowsShape In ActiveSheet.Shapes
'hide the next shape in the gallows
GallowsShape.Visible = msoFalse
Next GallowsShape
End Sub
Note that when you loop over a collection of shapes, you have to prefix the name of the Shapes collection with a reference to the worksheet which contains them.
Here are some ideas for functions (not subroutines) that you could include in your code. If you're not sure of the difference between a function and a subroutine, see the relevant pages in your courseware manual.
What the function could do | Value returned | Data type |
---|---|---|
Loop over the shapes in the gallows to determine if any remain invisible. | True if the player still has more guesses left; False otherwise | Boolean |
Loop over the cells in the word to be guessed, determining if any remain white. | True if the word has been fully guessed; False if some letters remain invisible. | Boolean |
When you've finished, save your file as Hangman with answers. Before closing it down, you might like to show it off to your trainer!
You can find other training resources for the subject of this exercise 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.