ARITHETIC OPERATORS
Operator Operation
^ Exponentiation
* / Multiplication and division
\ Integer division (truncates)
% Mod Modulus
+ - Addition and subutraction
CONCERTINATION
To concatentate two strings, use the & symbol or the + symbol: e.g
lblTime.Caption = "The current time is" & Format(Now, “hh:mm”)
txtSample.Text = "Hook this “ + “to this”
COMPARISON OPERATORS
Operator Comparison
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
= Equal to
<> Not equal to
LOGICAL OPERATORS
Operator Operation
Not Logical not
And Logical and
Or Logical or
Post a Comment