I hope someone can help. This problem has been really annoying for these 2 months.
I made application in MS Access with linked tables to Oracle Server. The dates in each tables are formatted manually "dd/mm/yyyy" like I wanted. I also has changed the regional settings>date>dd-mm-yyyy.
In a form to submit a data I used unbound textboxes; if it's for date I formatted it with "dd-mm-yyyy".
All data will be inserted into the database with one button which has event procedure to run sql statement:
INSERT INTO mytable VALUES .....
But when the dates submitted i.e. 11-06-2003(means 11 June 2003), It is saved as 06-11-2003 (6 November 2003) as I looked into the table.
I have tried to involved format function in the INSERT STATEMENT:
INSERT INTO mytable VALUES (#" & Format(Me.myDate.Value,"dd/mm/yyyy"
& "#)"
but that did not work also.
Can someone help me please? I've been trying to search all forums but nothing works yet. Thanks!
I made application in MS Access with linked tables to Oracle Server. The dates in each tables are formatted manually "dd/mm/yyyy" like I wanted. I also has changed the regional settings>date>dd-mm-yyyy.
In a form to submit a data I used unbound textboxes; if it's for date I formatted it with "dd-mm-yyyy".
All data will be inserted into the database with one button which has event procedure to run sql statement:
INSERT INTO mytable VALUES .....
But when the dates submitted i.e. 11-06-2003(means 11 June 2003), It is saved as 06-11-2003 (6 November 2003) as I looked into the table.
I have tried to involved format function in the INSERT STATEMENT:
INSERT INTO mytable VALUES (#" & Format(Me.myDate.Value,"dd/mm/yyyy"
but that did not work also.
Can someone help me please? I've been trying to search all forums but nothing works yet. Thanks!