Home and Learn: VB Net Course


Standard Modules in VB .NET

This lesson is part of an ongoing tutorial. The first part is here: Create your own Subs in VB .NET

The Subs and Functions worked perfectly well where they were - inside the two lines "Public Class Form1" and "End Class". If you tried to put them on a line underneath End Class you would get lots of blue wiggly lines under your code.

That's because the code all belongs to Form1. But it doesn't have to. In fact, it's better to separate all your Functions and Subs and put them somewhere else - in something called a Module. We'll explore the Standard Module, and see how to move our Functions and Subs outside of Form1. That way, we can use them in other projects.

So start a new project. Add a button to you new form. To add a Module to your project, click Project from the menu bar. From the menu, click on Add Module:

The Add Module menu

When you click Add Module (or Add New Item), you'll see something like this dialogue box popping up:

Add a Module to a VB NET project

Select Module from the Templates window. Type a name for your new module - modVerify.vb. When you've typed a name, click the Open button.

You'll should see a blank window, with this code in it:

The Module code window

If you take a look at the Solutions Explorer on the right, you should see that your new module is listed:

our Module is now in the Solutions Explorer

In between Module modVerify and End Module, type the following Subroutine:

Private Sub AddNumbers(ByVal num1 As Integer)

Dim answer As Integer

answer = num1 + 10

MessageBox.Show(answer)

End Sub

Your coding window should now look like this:

The Module code

Now click back on your form and double click the button you added. This will bring up the code window for the Form, and the cursor will be flashing inside of the button code.

Add the following code for your button:

Call AddNumbers(10)

When you press the return key, you'll see a blue wiggly line under the Sub name. If you hold your mouse over AddNumbers, you might see this:

The VB NET code for the Button

Because this lesson is a bit long, we'll continue it on the next page.

Back to the VB NET Contents Page

 


Buy the Book of this Course

Email us: enquiry at homeandlearn.co.uk