You should not use the DateDiff function, as it is a VB6 compatability
function. You should use the TimeSpan class quwiltw said. For example,
Dim time1 As DateTime = DateTime.Parse("November 27 1987")
Dim ts As New TimeSpan(365, 55, 3, 4)
Dim newTime As DateTime = time1.Add(ts)This will take the date 11/27/87 and add 365 days, 55 hours, 3 minutes
and 4 seconds to it.