Visual Basic .NET Tutorial

Mouse Move Paint using VB.NET

In this article, we will create a program that paints the form using the mouse movements through clicking. 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. You don't have to design your interface because we will only focus on the mouse event. 3. Now put this code for your code module.

Creating a StopWatch in VB.NET

Stopwatch is a timepiece that can be started or stopped for exact timing as of a race or any activity. In this article, we will going to create a program that has the capabilities and control like a stopwatch. 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.

Display MAC Address using Local IP in VB.NET

A MAC (Media Access Control) address is a number that identifies the network adapter(s) installed on your computer. The address is composed of up to 6 pairs of characters, separated by colons. You may need to provide your MAC address to a router in order to successfully connect to a network. There are so many ways to find the MAC Address of your PC. But in this article, we will only locate and know what is our IP address and then we can know also our MAC Address. Now, let's start this tutorial! 1.

Marquee Text in VB.NET

In HTML, a marquee is a small section of the browser window that displays text that rolls across the screen. You use the MARQUEE element to create scrolling section. Here in this article, we will also create a marquee function using vb.net. 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.

VB.NET Password Complexity

Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. In this tutorial, we will create a program that can determine if the inputted password is complex or not :) Now, let's start this tutorial! 1.

Text Scrolling Up Effect using VB.NET

In this article, we will create a program that has an effect of scrolling up the text. 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. Next, add only one Label named Label1 and labeled it as any text. Add a timer control named Timer1 and have its interval of 30.

Create a Drag and Drop Program in VB.NET

Drag and Drop is a very common feature in VB.NET. It is when you grab an object and drag it to a different location. In VB.NET, drag and drop is part of the standard, and any controls can be draggable. 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. Next, add only one TextBox named TextBox1 and ListBox named ListBox1.

Get the Pressed Key using VB.NET

Hi! :) In this article, i will discuss a tutorial that will capture, obtain, or get a key pressed by the user. 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. We don't need to design an interface because we have to get only the pressed key by the user. 2. Now put this code for your code module.

Backspace Button in VB.NET

We often click a backspace button in which this button is a keyboard key that display cursor one position backwards and deletes the character at that position, and shifts back the text after that position by one position. In this tutorial we will create this button. So 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.