I
id10t error
I am working with a tps file where the date they use is something like
75736. This number is the number of days since December 28,1800. I
know how to get this number with the code below
Dim d As DateTime = New DateTime(1800, 12, 28)
MsgBox(DateTime.Today.Subtract(d).Days()) 'returns 75736 on
5/7/08.
However, how can i convert the 75736 to 5/6/2008? Thank you for your
help
75736. This number is the number of days since December 28,1800. I
know how to get this number with the code below
Dim d As DateTime = New DateTime(1800, 12, 28)
MsgBox(DateTime.Today.Subtract(d).Days()) 'returns 75736 on
5/7/08.
However, how can i convert the 75736 to 5/6/2008? Thank you for your
help