LOTUSSCRIPT LANGUAGE
Syntax
expr1 And expr2
Elements
expr1, expr2
When using the And operator, any FALSE expression will cause the result to be FALSE.
' Boolean usage
Dim johnIsHere As Boolean, jimIsHere As Boolean
Dim bothAreHere As Boolean
johnIsHere = TRUE
jimIsHere = FALSE
bothAreHere = johnIsHere And jimIsHere
Print bothAreHere ' Prints 0 (False)
' Bit-wise usage Dim x As Integer, y As Integer x% = &b11110000 y% = &b11001100 Print Bin$(x% And y%) ' Prints 11000000
See Also