top
examples
faq
code archives
plugins
reusable classes
code reference
tutorials
bottom
logo

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z


And Operator


Description: Used to perform a logical AND on two boolean expressions
Syntax: result=(expression1 and expression2)
Information:
resultboolean Indicates whether both booleans are true
expression1boolean Any valid boolean expression
expression2boolean Any valid boolean expression
Notes: If both expressions evaluate to True, the result is true. Of either or both are False, result is False.
Examples: Dim a,b,c,d as boolean

a=True
b=True

d=(a and b) //d is True
d=(a and c) //d is False







This REALbasic Webring site is owned by Adam Robinson.

Want to join the REALbasic Webring?

[Skip Prev] [Prev] [Next] [Skip Next] [Random] [