Free computer Tutorials

home
Stay at Home and Learn

A Times Table Programme

 
Computer Tutorials List

 

 

 

 

 

Start a new project for this. Onto your new Form, place two textboxes and a Button. Set the Text property of Textbox1 to 1, and the Text property of Textbox2 to 10. Set the Text property of the Button to "Go".

When the Go button is clicked, the programme will put the numbers from the Textbox into two variables. We'll then put a value into a variable called multiplier. If you're doing the times tables, the format is

X multiplied by Y = Z
(2 multiplied by 3 = 6)

We'll use a Do Loop to work out the multiplier (that's the Y part); a For Loop will work out the rest. We'll then display the results in something called a Listbox.

So add a List Box to your form. It looks like this in the toolbox:

The ListBox Tool

The form you design should look something like this one:

Times Table Form

A List box is similar to a Combo Box, in that you have a list of items that the user can select. Here, we're just using it display the results of our programme. We'll add items to the List box with our code, rather than in design time like we did for the Combo box.

So, here's the code for the entire programme. Double click your Go button, and add the following:

Dim number1 As Integer
Dim number2 As Integer
Dim multiplier As Integer
Dim answer As Integer
Dim i As Integer

number1 = Val(TextBox1.Text)
number2 = Val(TextBox2.Text)

multiplier = 2

Do While multiplier < 3

For i = number1 To number2

answer = i * multiplier
ListBox1.Items.Add(i & " Times " & multiplier & " = " & answer)
Next i

multiplier = multiplier + 1

Loop

When you've finished, run the programme and see how it works. You should see this appear in your List box:

List Box with 2 Times Table

Let's run through the code to see how it works.We'll do that on the next page. Click the link below to move on.

 

Click here to move on to the Time Table Code -->

<--Back to the .NET Contents Page

View all our Home Study Computer Courses