VB 6 – Log() Function

In this article, you will learn about Log() function. The Log function takes the Logex of a number x. To know the correct log value of a number you must refer to a log table.For example, logex = loge10 = 2.302585 Example Program: Log() FunctionOutput: Log() Function

VB 6 – Rnd() Function

The VB6 random number function is Rnd(). It generates a random number. In the following program we will use this function to generate a random number.The Rnd() function generates a number between 0 to 1 which is a double value. However, you may increase the value of random number by multiplying it with some integer … Read more

VB 6 – Sqr() Function

In VB 6, the sqr() function gives the square root of any number. The argument for the sqr() function must be a Double mean a real number.In the example program below, we accept a number and return its square root.Program Code: Sqr() FunctionOutput: Sqr() Function

VB 6 – Exp () Function

The Exp() function is antilogarithm. Suppose there is a number 1000 which is 103 and its log value is 3. The the anti-log value of 3 is the number 1000. The VB 6 Exp(1) the value of constant e which is equal to 2.71828182845905 .Any value that gives result more than 709.782712893 will be an … Read more

VB 6 – Cos Function

The Cos function in VB 6 returns the cosine value of a degree. When you enter a degree value in the program, it gives you a real value, that is, the Cosine value.The program code is given below along with output.Program Code: Cos FunctionOutput: Cos Function

VB 6 – Math Functions

In this article, you find a list of mathematical functions. The math functions are built-in feature of Visual Basic 6.0. Function Meaning Abs Find Absolute value Atn Find Arc tangent Cos Find Cosine of a given angle Exp Find Exponential value of a number Fix Fix places Int Return integer value Log Log Rnd Generate … 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.The collections are interesting because they have following properties: Can contain different data types Have their own index Have their own methods The collection have different types of methods to manage … Read more

VB 6 With Statement

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.The syntax for the width statement is given below.Example: With StatementIn the following example, we will use With statement to set some properties of a Textbox control.In the above example, we … Read more

VB 6 For … Each Loop

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 is suitable to go through each item of a collection or an array. Syntax: For…Each LoopThe syntax for the For..Each loop is given below.The keywords are very much similar to for … Read more

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Exit mobile version