Visual Basic
Visual Basic
c- Toolbox: it contains a collection of tools that are needed for project design.
Arithmetical Operators
Relational Operators
Operator Exampl
Description Result
s e
> Greater than 10>8 True
< Less than 10<8 False
>= Greater than or equal to 20>=10 True
<= Less than or equal to 10<=20 True
<> Not Equal to 5<>4 True
= Equal to 5=7 False
Operators in Visual Basic
Logical Operators
Operator
Description Example
s
Compare two variables if a
AND If x AND y ThenEnd If
AND b equals
Compare two variables if a
OR If x or y Then End If
OR b equals