VB 6 Collections
In the previous article, you learned about different types of loops and know about arrays. In VB 6, there is also a container called Collection.… Read More »VB 6 Collections
In the previous article, you learned about different types of loops and know about arrays. In VB 6, there is also a container called Collection.… Read More »VB 6 Collections
In the previous article, you learned about the For loop, however, there is another loop called For…Each loop similar to For loop. The For…Each loop… Read More »VB 6 For … Each Loop
The For loop is another simple loop structure, which is different from other loops like Do loop and While Loop because it specifies a range… Read More »VB 6 For Loop
Loops are very important when you want to repeat some code block. In previous example, we saw how while loop works. In this article, you… Read More »VB 6 Do Loop
The VB 6 Choose() function is another function that let you choose values based on an index. However, do not confuse it to be an… Read More »VB 6 – Choose() Function
The Switch() function works similar to If-Then-Else construct, but in a different way. The function checks few conditions and if one of the condition is… Read More »VB 6 – Switch Function
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()
The strComp() function is a string handling function that compares two given string and returns an integer value. If the strings are same, a 0… Read More »VB 6 – StrComp()