VB 6 Select-Case
In the previous article, you have learned about the if-then-else statements and how you can build a program in VB 6 that work on conditions.… Read More »VB 6 Select-Case
In the previous article, you have learned about the if-then-else statements and how you can build a program in VB 6 that work on conditions.… Read More »VB 6 Select-Case
The conditional statements are very important to any programming language. In VB 6, the conditional statement change the direction of the program using If…Then …Else… Read More »VB 6 – If…Then…Else Statements
In Visual Basic 6, there are two important functions to change a string to uppercase or lowercase. In this example, you will build a small… Read More »VB 6 – UCase() and LCase()
Earlier you learned about the string data type. The VB 6 language has many functions to handle string types. In this article, we will present… Read More »VB 6 String Handling
A subroutine is a block of code like function that do a specific task. The difference between subroutine and function is that a subroutine does… Read More »VB 6 Declaring A Subroutine
The VB 6 arrays hold data of a single type. In this article, you will learn about declaring, assigning, and various array handling techniques. Types… Read More »VB 6 Arrays
The scope of a VB 6 variable decides the lifetime of that variable. There are 3 levels of scope for a variable in Visual Basic… Read More »VB 6 Variable Scope
Type casting in VB 6 means converting from one data type to another. The VB 6 language allows type conversion using functions. Here is a… Read More »VB 6 Type Casting
If you have added the forms and controls to the project, the visual basic language will make them work. The visual basic 6 language is… Read More »VB 6 Variable Declarations
Visual basic open a project in design view where you can modify project properties like project name and description, version information, and other similar attributes.… Read More »VB 6 Managing Projects