Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[color blue]Dim[/color] myDate [color blue]As New[/color] Date(Now())
[color green]'or[/color]
[color blue]Dim[/color] myDateTime [color blue]As New[/color] DateTime(Now())
[color blue]Dim[/color] myDate [color blue]As New[/color] Date()
myDate = Now()
[color green]'or[/color]
[color blue]Dim[/color] myDateTime [color blue]As New[/color] DateTime()
myDateTime = Now()
[color green]'OR[/color]
[color blue]Dim[/color] myDate [color blue]As Date[/color] = Now()
[color green]'or[/color]
[color blue]Dim[/color] myDateTime [color blue]As DateTime[/color] = Now()