Use this function to determine whether a string represents a valid time:
Public Function IsTime(sTimeArg As String) As Boolean IsTime = IsDate(Format(Date, "short date") & _ " " & sTimeArg)End Function
Home » Write an IsTime Function
Use this function to determine whether a string represents a valid time:
Public Function IsTime(sTimeArg As String) As Boolean IsTime = IsDate(Format(Date, "short date") & _ " " & sTimeArg)End Function
At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.
See our full editorial policy.