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.

Advertisements
Advertisements

For example, logex = loge10 = 2.302585

Example Program: Log() Function

Private Sub Command1_Click()
Dim Num As Double, Result As Double
Num = Val(Text1.Text)
Result = Log(Num)
Text2.Text = Str(Result)
End Sub
Private Sub Command2_Click()
  Text1.Text = ""
  Text2.Text = ""
End Sub

Output: Log() Function

Output - Log() Function
Figure 1 – Output – Log() Function

Advertisements

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

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