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 str As String = "01/12/2006"
MsgBox(str)
Dim mo As String = str.Substring(3, 2) & "/" & str.Substring(0, 2) & "/" & str.Substring(6)
MsgBox(mo)
Dim dt As Date = Date.Parse(mo)
MsgBox(dt.ToShortDateString)
MsgBox(dt.ToString("dd-MMM-yyyy"))