P
PsyberFox
Hi there,
I have the following problem - take into account that the normal date format
in my country is dd/mm/yyyy.
I have a date field in a form, with an input mask - this all works fine.
However, I had an after_update event procedure as follows:
Date.DefaultValue = Date
BUT, when going to the next record, it showed it as 00:00:22. THEN, I
changed the after_update event procedure to the following (to try and force
it to the format I need):
Date.DefaultValue = "#" & Day(Date) & "/" & Month(Date) & "/" &
Year(Date) & "#"
This all worked fine UNTIL yesterday 03/06/2008 - when going to the next
record, for some reason it changes on screen to 06/03/2008.
Can anyone please shed some light on my problem?!
Thank you and regards,
I have the following problem - take into account that the normal date format
in my country is dd/mm/yyyy.
I have a date field in a form, with an input mask - this all works fine.
However, I had an after_update event procedure as follows:
Date.DefaultValue = Date
BUT, when going to the next record, it showed it as 00:00:22. THEN, I
changed the after_update event procedure to the following (to try and force
it to the format I need):
Date.DefaultValue = "#" & Day(Date) & "/" & Month(Date) & "/" &
Year(Date) & "#"
This all worked fine UNTIL yesterday 03/06/2008 - when going to the next
record, for some reason it changes on screen to 06/03/2008.
Can anyone please shed some light on my problem?!
Thank you and regards,