hi all,
I'm trying to add a time stamp on timestamp to a file. However the datetime format to string look DateTime Format ToString() looks weird to me.
here
Here is my code:
Dim _timeStamp As String = Date.Now.ToString("dd_mm_yyyy")
but the value look looks like this:
_timeStamp = "03_24_2009"
I check checked my PC and the current date is correct. Shouldn't the value look like this"03_03_2009". : 03_03_2009?
