The text of this article is not in this database — only its details are. Read it on the old site: Easy Date Validation in Visual Basic
12 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Easy Date Validation in Visual Basic
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
James MouchetteditedPosted Mar 12, 2009, 11:08 AMEdited Mar 12, 2009, 11:10 AM
Try FormatDateTime(DateString, DateFormat.GeneralDate) MsgBox("Valid Date") Catch ex As Exception MsgBox("Invalid Date") End Try This seems much faster and is already a part of VB.Net.