gusbrunston
Programmer
Good evening.
I tried to save a date and use the variable to populate a date field in another record:
then
then
The result I got in Me.txtTransDate was something like [tt]"12/31/1899"[/tt].
Should have been [tt]"11/24/2003"[/tt]
How did I go wrong?
Thanks in advance,
[tt]Gus Brunston - Access2000(DAO)
Skill level based on 1-10: 7
Webmaster: www.rentdex.com[/tt]
I tried to save a date and use the variable to populate a date field in another record:
Code:
Public varDate As Date
then
Code:
varDate = Me.txtTransDate
Code:
Dim varDate As Date
Me.txtTransDate = varDate
The result I got in Me.txtTransDate was something like [tt]"12/31/1899"[/tt].
Should have been [tt]"11/24/2003"[/tt]
How did I go wrong?
Thanks in advance,
[tt]Gus Brunston - Access2000(DAO)
Skill level based on 1-10: 7
Webmaster: www.rentdex.com[/tt]