Dim Dnought As DateTime = #1/1/1970#
January 1st, 1970 into this datetime.
The ## means that its a datetime constant.
Dim Dfinal As DateTime = Dnought.AddSeconds(1343432352)
Add the number of seconds to dnought to get the final date.
MessageBox.Show(Dfinal.ToString())