I have a problem which appears on windows7embedded 32bit but not on my windows10 64bit developing desktop. I run the exactly same code.
I have a variable as Date which contains date and time. Then I put it into a function as string. In the function I modify it while it is a string and then I convert it back to date again. This is where the error appears.
This is the format I use. Its always the format before I convert it:
dd.MM.yyyy hh:mm:ss
This is the function I use to convert the string, with the named format, into a date:
Dim d As Date
d = CDate(strDate)
Its one of my first posts, I still have my struggles with programming and thank you in advance.