Visual Basic .NET

How to Display OS Version in Visual Basic.Net

Submitted by donbermoy on
Hi! This is me again! :) Now, i will introduce some kind of tutorial that will find and display your PC's OS Version with the use of Visual Basic. Before we start, let us first discuss what are the codes that we will be using in this tutorial. We will use the OperatingSystem class as it will return a string representation of operating system information and the Environment Class which will provide the current environment and platform of your OS. Now, let's start this OS Version Displaying tutorial! 1.

Font Dialog Tutorial in Visual Basic.NET

Submitted by donbermoy on
Font Dialog is one of the important features in VB.NET The Font because it lets the user choose attributes for a font, such as font family and associated font style, font size, effects , and a script. Now, let's start this Font Dialog 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.

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.

CPU Meter

Submitted by bardinasjay on
This is a simple CPU METER which shows CPU usage and complete ram usage. this also shows the operating system of your unit. this is only for a single core processor. Hope it helps. Let me know whatever you want to know. using vb.net

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.