vb.net

Auto Typing Application in VB.NET

Submitted by donbermoy on
Typing means to encode or write. It is really a hassle when we always encode or type such long sentences and paragraphs. But now, i will introduce some kind of tutorial in visual basic.net; the Auto Typing Application. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Create Folder using VB.NET

Submitted by donbermoy on
In VB.Net, sometimes we have require to Create New Folder. This Tutorial Shows How to Create a Folder using VB.NET. To achieve that, first of all we need to include the following statement in the program code: Imports System.IO - This line has to precede the whole program code as it is higher in hierarchy for DirectoryInfo.

Reverse a String in VB.NET

Submitted by donbermoy on
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

Submitted by donbermoy on
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

Submitted by donbermoy on
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.

Picture Manager (updated version 1)

Submitted by cngirwa on
Picture manager help user to store picture to the database,edit picture name or delete picture. please open the read me first document before you open the system. thank you.. Updates: - Search functionality - Increased size of resolution (1025x650 pixels) - Reduced size (~750kb) For any question, please contact me via email or sourcecodester message modules. Please fill free to visit my other

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

Submitted by janobe on
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.

Navigate Record In the DataGridView Control

Submitted by janobe on
In this tutorial I will teach you how to navigate records in DatagridView using Visual Basic 2008 and MySQL Database. This will show you that you can limit your displayed records in the Datagridview. And there’s no need for you to scroll down to it whenever you have plenty of records. All you have to do is to click next and previous buttons.