Hi;
My software tries to write and read date from ms access table. In the MS Access format is DD.MM.YYYY HH.mm.ss. Is there any date format in VB.Net which is like this? How can I write on this?
I used a code like this:
INSERT INTO TabelName Values(...., DD.MM.YYYY HH.mm.ss,...) and
INSERT INTO TabelName Values(...., 'DD.MM.YYYY HH.mm.ss',...)
but none of them worked
What can i do?