Visual Basic Quick References
|
|
| Select Case.......End Select |
This is a procedure to manage multi-conditional
statements
The format is
Select Case expression
Case value 1
statements
Case value 2
statements
.
.
Case Value n
End select
|
| Sqr |
The sqr function returns
the square root of a number. Example: Sqr(144)=12 |
| Str |
The function that
converts a numeric into a string |
| |
|
| |
|
|
|
[Back to VB Guide]