JavaScript Page Events
In this article, we will look at page events and how JavaScript handle those events. Load Event JavaScript can check the page level events such… Read More »JavaScript Page Events
In this article, we will look at page events and how JavaScript handle those events. Load Event JavaScript can check the page level events such… Read More »JavaScript Page Events
Events are clicks, key press, or mouse moves. Timing and order of event cannot be predicted. Browser puts it in a queue of events, looks… Read More »JavaScript Events
The With statement is not a loop, but can be as useful as a loop. In this article, we will discuss about the With statement.… Read More »VB 6 With Statement
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
Like many programming languages out there, VB 6 also has loop control statements. In this article, you will learn about While loop which helps in… Read More »VB 6 While Loop
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