Visual Basic .NET Tutorial

Reverse a String in VB.NET

In this tutorial, we will create an application on how to Reverse a String in VB.NET. First, Go to Microsoft Visual Studio, go to File Menu, click New Project, and choose Windows Form Application. Now, create two textboxes with the default name of TextBox1 and Textbox2. Textbox1 will be used as our string input and Textbox2 for displaying the reversed string result.

How to Read and Write Text Files in VB.NET

Hi! this is my other tutorial in VB.Net in how to read and write a file. In this tutorial, we will learn how to manage data that is stored as a text file. Using text file is an easy way to manage data, although it is not as sophisticated as full fledged database management software such as SQL, Microsoft Access, and Oracle. VB.NET allows the user to create a text file, save the text file as well as read the text file. Reading and writing to a text file in VB.Net required the use of the StreamReader class and the StreamWriter class respectively.

Sending E-mail using VB.NET

Hi! In this tutorial, i will introduce some kind advanced VB.NET Tutorial which is Sending an E-mail. VB.Net allows sending e-mails from your application. The System.Net.Mail namespace contains classes used for sending e-mails to a Simple Mail Transfer Protocol (SMTP) server for delivery. In this tutorial, let us create a simple application that would send an e-mail.

Navigate Record In the DataGridView Control (Count the records, First and Last Buttons)

This is the continuation of my previous tutorial which is the Navigate Record In the DataGridView Control. This time I’m going to add the last and first buttons and at the same time I’m going to add the counting of how many times the displayed records change in the DataGridView.