There's a setting in the Windows Control Panel, under Regional Settings,
where you tell Windows how to interpret a 2-digit date. By default, anything
below '30 is treated as this century, and anything above that is treated as
last.
You can modify the setting there, but this will affect all your Windows
programs. Alternatively, you could write code in the AfterUpdate event
procedure of the control so that if the date has past, it adds 100 years to
it.
If you need an example to follow, this one may help:
http://allenbrowne.com/func-AdjustDateForYear.html
It actually works with the year rather than the century (i.e. if you enter a
December date in February, it treats it as the Dec just past, not the future
Dec of this year.)