9.0

210
See Also: Date, Time, Timer.
Example
Sub Main
Debug
.Print Now ' example: 1/1/1995 10:05:32 AM
End
Sub
Num definition
An expression that returns a numeric result. Use &O to express an octal number. Use &H to express a hex number.
Numvar definition
A variable that holds one numeric value. The name of a numeric variable may be followed by the appropriate type
char.
Objexpr definition
A expression that returns a reference to an object or module.
CreateObject("WinWrap.CDemoApplication")
Objtype definition
A specific ActiveX Automation type defined by your application, another application or by an object module or class
module.
See Also: Objects
, CreateObject( ), GetObject( ).
Objvar definition
A variable that holds a objexpr which references an object. Object variables are declared using As Object in a Dim,
Private
or Public statement.
See Also: Objects.