{currenthelptext} {product} {helptype} {viewcore}
Example - Abs Function
Sub Main
Dim Msg, X, Y
X = InputBox("Enter a Number:")
Y = Abs(X)
Msg = "The number you entered is " & X
Msg = Msg + ". The Absolute value of " & X & " is " & Y
MsgBox Msg 'Display Message.
End Sub