visual basic

Start Up Program - Remove (VB.NET)

Submitted by donbermoy on
This is a continuation of my other tutorial in vb.net that loads and displays the number of startup programs in your computer and then displays it. Now, this tutorial aims to select and remove the retrieved start up programs in our pc. strong>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.

Load Start Up Program in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that can load all the start up programs in your computer and loads the total number of it 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.

Animation - Blinking and Changing Color Effects of Text (VB.NET)

Submitted by donbermoy on
This tutorial will teach you how to create a program that has a blinking and changing color of the texts 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. Next, add only one label named DspLabel1 and one timer named Timer1. 3.

Print Screen Application in VB.NET

Submitted by donbermoy on
This is a simple tutorial but also a very useful one as it gets the print screen effect and will put it on the picturebox. 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 a picturebox and a timer on the form. 3. Now, we will do the coding. First, we will just code for the ticking event of our timer.

Zoom Application - Lock The Zoom Area (VB.NET)

Submitted by donbermoy on
This tutorial is a continuation of my other tutorial entitled http://www.sourcecodester.com/tutorials/visual-basic-net/9375/creating-zoom-application-vbnet.html. But this time, I added some twist such as locking the selected zoom area after zooming it using the hovering of the mouse. Now, let's start this tutorial! 1.

Customized Mouse Cursor in VB.NET

Submitted by donbermoy on
This is a very simple tutorial but a very useful one that it customized the mouse cursor in your Form. Sometimes, we wanted to have good designs and one of them is creating a good cursor for your system. 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.

Creating a Zoom Application in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a zoom application in 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. Have only a Timer on the Form named Timer1. 3. Now, we will code our program. We will declare first the variables.

Add Multiple Pictures Dynamically and Show the Selected Picture in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that will add multiple pictures dynamically and will show the selected picture in the picturebox using vb.net. 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 Button named Button1 and one PictureBox named PictureBox1 in your Form. 3.

File Content Sorter in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that sorts the content of file in 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. Next, add one button named openBTN and an OpenFileDialog1 that we will use to open a particular file such as text file. 3.

Windows Blend Effect (Transparency) in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a blend effect in your windows form or a transparency/opacity of the form using vb.net. This will use "user32" library of our computer system so that it will take effect. 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 only a Form in your project. Insert also a Timer on it.