ASCII Generator using VB 6.0

Submitted by donbermoy on
ASCII is one of the important functions of a program as it creates shortcut keys when pressed. ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as 'a' or '@' or an action of some sort. Most computers use ASCII codes to represent text, which makes it possible to transfer data from one computer to another.

Create a Drag and Drop Program in VB.NET

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

No Duplication of Item in ListBox using VB 6.0

Submitted by donbermoy on
In this tutorial, we will create a program that can filter duplication inside our ListBox when we input the same text in the TextBox. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add only one Button named Command1 and labeled it as "Add Item", one TextBox named Text1 and make it as empty, and one LitBox named List1

Border-radius Property in CSS

Submitted by argie on
This CSS property is supported in IE9+, Firefox, Chrome, Safari, and Opera. Border radius allows the developer to insert and define how rounded the border corners are in the div, span and other tag. Border-radius property is a shorthand to set the four properties border-top-left-radius, border-top-right-radius, border-bottom-right-radius and border-bottom-left-radius.

Text Transform Property in CSS

Submitted by argie on
Text transform property is supported in any kind of browser. The primary function of this property is it allows you to transform your text into none, uppercase, capitalize and lower case format. To understand what this four property are, follow the steps bellow.

Creating Our Display

The code Bellow will display the result of none, uppercase, capitalize and lower case format.

Create a Hyperlink in VB 6.0

Submitted by donbermoy on
In this tutorial, we will create a hyperlink label in VB 6.0. I also created this tutorial in VB.NET using the LinkLabel Control but here in VB 6.0 there is no shortcut control for this. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2. Next, add only one Label named Label1 and labeled it as "Click this to go to Sourcecodester Website".

Remove all numbers in the TextBox

Submitted by donbermoy on
This is a tutorial in which if we input a number or numbers in the textbox, it will remove or clear those numbers if we will click the remove button. 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.

Backspace Button in VB 6.0

Submitted by donbermoy on
Hi. This is my another tutorial again in vb 6.0 entitled creating a backspace button. I had already created a tutorial on this in vb.net but it has a different code. Now, let's start this tutorial! 1. Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.