VB 6 – Switch 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
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()
In this example, you will learn about the string handling funciton called StrConv(). That converts the string into following types vbKatakana vbHiragana vbUpperCase vbLowerCase vbUnicode… Read More »VB 6 – StrConv()
In this example, you will learn about string handling function called Len() which return the length of a given string. VB Code Output – Len()
In the previous article, you learned about functions that returned values. The variables that return the value are of two types – global and local.… Read More »VB 6 Static Function
In the previous article, we learned about subroutines. You will learn about VB 6 functions in this article and learn the difference between a function… Read More »VB 6 Declaring Functions
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