|
On the Edit page verify that the start date is earlier than the
end date.
Note: Change
the values listed in red to
match your specific needs.
|
if CDate(values("start_date"))>CDate(values("end_date"))
then
message = "Error"
BeforeEdit = False
else
BeforeEdit = True
end if
|
|