vb6.0

Count Number of Characters

Submitted by donbermoy on
In this article, we will create a program that can count all the characters of a text inputted in a 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 "Count Characters". Add also TextBox named Text1 for our input.

RichTextBox with Text Alignment in VB6

Submitted by donbermoy on
In this article, we will create a program that can open a RichTextBox and manipulate its alignment such as Left, Center, and Right. RichTextBox allows the user to enter and edit text while providing more advanced formatting features than the standard TextBox control. Text can be assigned directly to the control, or can be loaded from a rich text format (RTF) or plain text file.

Battle Tanks - An advanced animation and deeper understanding of VB 6.0 class

Submitted by donbermoy on
When I was still a student, this laboratory activity in Visual Basic 6.0 subject caught my attention. I love anime and making them is an amusement for me. I thank my instructor in this subject when he taught us about vb6.0 class in programming and then this advanced animation in our prefinals. I posted this kind of animation in vb.net but I was an instructor at that time. And here in this post, it

Age Generator in VB6.0

Submitted by donbermoy on
Hello! Aside from making tutorial on vb.net, i will also create a tutorial for vb 6.0 for now. We will create an age generator using vb6.0. 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 "Compute".

Bubble Sort

Submitted by pinuno on
This simple program demonstrates the Bubble Sort Algorithm. Allowing the end user to text of any length and displays the sorted set of characters. The Program uses one-dimensional array and bubble sort.