Constants are used for constant variables like PI (3.14) etc.
Const operator is used to describe such variables
Dim i As Integer
…
i = 0
…
i = i + 1
Dim operator reserves memory field of specific type for corresponding data type.
Embedded into VBA constants start with vb prefix.
vbRed – red color
vbSunday – sunday
vbCrLf – new line
vbYesNo – Yes and No buttons
Arithmetical:
1) powering (^);
2) negation (-);
3) multiplication and division (*, /);
4) integer division (\);
5) modular summation (Mod);
6) addition and subtraction;
7) string concatenation (&).
Comparison:
=, <>, <, <=, >, >=
Block model is used when at least one branch has more than one operator
If txtPrice = "" Then MsgBox “Please input price", _ vbExclamation, “Attention"
If Condition Then
Operators
End If
If Condition1 Then
Operators1
ElseIf Condition2
Operators2
…
[Else
OperatorsN]
End If
Если не удалось найти и скачать презентацию, Вы можете заказать его на нашем сайте. Мы постараемся найти нужный Вам материал и отправим по электронной почте. Не стесняйтесь обращаться к нам, если у вас возникли вопросы или пожелания:
Email: Нажмите что бы посмотреть