Visual Basic .NET Tutorial

How to Browse Computer Drives Using VB.Net

Submitted by janobe on
Now, let’s learn how to browse computer drives using VB.Net. The function of this program is to browse the entire folder inside your computer drive. In this way you can also view list of files inside the folder of computer drives. You will see it because it will be displayed inside the listbox. Now let’s begin.

How to Display All Drives into the ListView Using VB.Net

Submitted by janobe on
This tutorial that I’m going to teach you is about how to display all drives into the listview using Vb.Net. This method is useful when you have to display the computer drives in the listview. With this, you will be able to see and have an idea what drives are available on your computer. Simply follow the instructions below and you will be done in no time.

How to Delete Multiple Data Using VB.Net and MS Access Database

Submitted by janobe on
In this tutorial, I will teach you how to delete multiple data using vb.net and MS Access database. This method will give you convenience in deleting data and you can select what data to be deleted by using a checkbox. This will surely help you especially if you have multiple data to delete. Follow the procedure below to see how it works.

How to Save Multiple Data Using VB.Net and Access Database

Submitted by janobe on
In this tutorial, I will teach you how to save multiple data in the database by using vb.net and MS Access database. I create this tutorial because of the request of my followers. This method is very helpful for saving multiple data in just a click. Hope you will find this tutorial useful too.

Calculate the Sum of Even Digits of the Given Numbers in VB.Net

Submitted by janobe on
In this tutorial I will teach you how to calculate the sum of even digits of a given number in vb.net. This method has the ability to accept the numbers from user. Then it will calculate the sum of even digits of a given number and display it in the textbox. This is just a simple program to do once you follow the steps below.

How to Get Armstrong Numbers Between 1 to 1000 in VB.Net

Submitted by janobe on
If you wonder how to get Armstrong numbers in VB.Net, simply follow the procedure below to see if a number is an Armstrong number. But, before that let’s learn first what Armstrong number is? Is a number that when you raise each digit of the number to the power of the number of digits and add them up you still get the original number. It will be easier with an example, take a look at this. For example, 153 is an Armstrong number since (1^3) + (5^3) + (3^3) =153.

How to Create a Simple Traffic Lights in VB.net

Submitted by janobe on
The tutorial that I’m going to teach you today is about creating a simple traffic lights in VB.Net. This is a simple program that can be done in an hour or less. A time interval is set in this program so it will work like the actual traffic lights. To see how it works, use the following code below.

How to Get Factorial Numbers in VB.Net

Submitted by janobe on
This time, let’s learn how to get factorial numbers in VB.Net. If we say factorial number, it means a number which is multiply itself to its decreasing numbers and it is denoted by the symbol (!). Like for example the factorial number or value of 5. This is how it looks like, 5! = 5 x 4 x 3 x 2 x 1 = 120. Now, let’s try doing this with codes in VB.Net. Just simply follow the instructions below.