Home > Available Help Files > PC-DMIS BASIC Language > Language Reference A – Z > DateValue Function > Example:
Current Help System: PC-DMIS BASIC (View Core Help)
Example:
Sub Main ()
Dim v As Variant
Dim d As Double
d = Now
Print d
v = DateValue("1959/05/29")
MsgBox (VarType(v))
MsgBox (v)
End Sub