P
Peter
What is the easiest way to convert serialdate (like excel has) into real
date in VB.NET?
Thank You
Peter
date in VB.NET?
Thank You
Peter
Peter said:What is the easiest way to convert serialdate (like excel has) into
real date in VB.NET?
Armin Zingler said:What is a serial date? Is it a Double, an Integer or what? Does it have a
base date like 1/1/1900? Have a look at the constructors and other members
of the DateTime data type.
Armin
Peter said:In VB6 you could do the following
Dim d As Date
Dim dbSerial As Double
d = Now
dbSerial = d +1
'
' or
'
db = 38793.3447800926
d = dbSerial
How can I do this in .NET