Hello and thanks for reading this.
I was wondering how can i Check if a time from my textbox is a valid time.
It shall accept xx:xx aka ( 10:00 or 15:15 or : 23:59)
public bool IsValidTime(string thetime)
{
//Code to validate the time
}
so if the value from the textbox is 12 or 12:00:00 it returns false, hope your get the idea.
Thanks alot.
Go to the complete details ...