Prev Page Next Page
Return
Previous Top Next

Ends the current sub and returns to the calling sub. If Return is followed by a value, then the value will be passed to the calling sub.

Syntax: Return [Value]

Example:
Sub SomeSub
            If IsInteger (a) = true Then
                         b=a
            End If
End Sub

Sub IsInteger (x)
            If x = Int(x) Then
                         Return true
             Else
                         Return false
            End If
End Sub
Prev Page Next Page
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)