In my program i input a record to MS Access database like this
INSERT INTO Stock VALUES('"+ textCode.Text +"', '#"+ datetimepickerDate.Value +"#', somenumber)
With datetimepicker.Value says 09/06/2022 19:35:14
But for some reason when i open MS Access and checked the record, the date magicaly turns 06/09/2022 19:35:14
I didn't change the datetimepicker's format and it should use system date format, and now i can't select or update the record because of the day and the month switches place.
It works without a problem on my PC, but it wont do with my one specific friend's.
How do i fix this?
Thanks~