Small company logo:
   History
 
Advertising banner:
 
 AND
Home • Help • Customization Tools • FCAS • Language Reference • AND
 
Purpose
Evaluates whether two expressions are TRUE.
Both expressions must be TRUE for the AND result to be TRUE.
Syntax
Expression1 AND Expression2
Example
Sub Main()
Dim e1 as Integer, e2 as Integer e1 = TRUE: e2 = 5< 34
        If e1 AND e2 Then
                Print "Both expressions are TRUE"
        Else
                Print "Neither expression is TRUE"
        End If
End Sub