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.
dim kdate
dim normaldate
dim datebits
kdate = "3/10/2007"
datebits = split(kdate,"/")
normaldate = cdate(datebits(1) & "/" & datebits(0) & "/" & datebits(2))
msgbox(normaldate)
dim kdate
dim normaldate
dim datebits
kdate = "3/10/2007"
datebits = split(kdate,"/")
normaldate = formatdatetime(cdate(datebits(1) & "/" & datebits(0) & "/" & datebits(2)), 0)
msgbox(normaldate)