9.0
240
Items(1) = "Item &2"
Items(2) = "Item &3"
X = ShowPopupMenu(Items) ' show popup menu
Debug
.Print X ' item selected
End
Sub
Sin Function
Syntax
Sin(Num)
Group
Math
Description
Return the sine.
Parameter Description
Num Return the sine of this numeric value. This is the number of radians. There are 2*Pi
radians in a full circle.
Example
Sub Main
Debug
.Print Sin(1) ' 0.8414709848079
End
Sub
Space$ Function
Syntax
Space[$](Len)
Group
String
Description
Return the string Len spaces long.
Parameter Description
Len Create a string this many spaces long.
See Also: String$( ).
Example
Sub Main
Debug
.Print ".";Space$(3);"." '". ."










