Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
395 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 ==> | Visual Basic (46 exercises) |
| Topic ==> | Using arrays (2 exercises) |
| Level ==> | Average difficulty |
| Subject ==> | Visual Basic 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.
Press CTRL + D to add the file called frmGetNames.vb from the above folder into your project (or right click on the project and choose to add it as an existing item).
Change your project's properties to make this the default form for your project. When you run your project, you should see this:

After typing a name into the box, a user should be able to click on the button to add the name to an array.
A good start would be to create the following constant, variable and array at the top of your form's code-behind:
'the number of names allowed
Const maxNumber As Integer = 5
'the current number
Dim currentNumber As Integer = 0
'array of all of the names
Dim applicants(maxNumber) As String
Now write code so that when a user clicks on the Apply button your system adds the relevant person's name into the applicants array, and displays a message showing the names added to date. For example, here's what you might see after adding 3 names:

Don't forget to add a check that you haven't exceeded the maximum allowed number of applicants (as set in the maxNumber constant).
Keep adding names to check that you can't exceed the maximum number given in maxNumber, then close your application and forms down.
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 2026. All Rights Reserved.