I have written some code to check two dates, a start date and an end date. If the end date is before the start date, it will give a prompt that says End date is before start date.
I also want to add a check for if the start date is before today (today as in the day of which the user uses the application) How would I do this? ( Date checker code below, also all this is written for android if that has any bearing)
if(startYear > endYear)
{
fill = fill + 1;
message = message + "End Date is Before Start Date" + "\n";
}
else if(startMonth > endMonth && startYear >= endYear)
{
fill = fill + 1;
message = message + "End Date is Before Start Date" + "\n";
}
else if(startDay > endDay && startMonth >= endMonth && startYear >= endYear)
{
fill = fill + 1;
message = message + "End Date is Before Start Date" + "\n";
}