EXERCISE TOPIC▼
VISUAL BASIC EXERCISES▼
VISUAL BASIC EXERCISES▼
- Drawing forms (2)
- Form events (1)
- Variables and data types (2)
- Enumerations and constants (2)
- Form validation (3)
- Menus and toolbars (2)
- Files and folders (1)
- Basic DataGridViews (1)
- Reacting to DataGridView events (3)
- Advanced DataGridViews (2)
- Creating classes (4)
- Coding in VB.NET (2)
- Variables and constants (3)
- Testing conditions (2)
- Passing arguments (3)
- Using arrays (2)
- Loops (2)
- Working with files (3)
- Lists (3)
- Creating properties (3)
Visual Basic | Lists exercise | Populate a list giving the first square integers
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.
You can learn how to do this exercise if you attend one of more of the courses listed below!
Software ==> | Visual Basic (46 exercises) |
Version ==> | Any version of VB |
Topic ==> | Lists (3 exercises) |
Level ==> | Relatively easy |
Classroom ==> | Introduction to VB.NET / Intermediate VB |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Press CTRL + D to add the file called frmSquares.vb from the above folder into your project (or right click on the project and choose to add it as an existing item).
The aim of this exercise is to make the following work:

The idea is that when you click on the Go! button your code should create a list, add the first ten squares to it and then display the list items in the list box as shown here.
Please turn over for how to proceed!
The first thing to do is to create a list:
'create a new list to contain the square numbers
Dim squares As New List(Of Integer)
Next, loop from 1 to 10 adding the square of each integer to the list called squares.
You can then set the data source for the listbox to be the list that you've populated:
'show this list of squares
lstSquares.DataSource = squares
When you've got this working, close down your application and any forms that you have open.