I'm writing a vi that sets a time stamp using the "Get Date/Time In Seconds.vi", converting the time stamp format into a double to get seconds, then I'm saving it as a string to a text file. When I read in the string from the file and use the "Decimal String To Number.vi" the output is limited to I32, which truncates the number to the upper I32 integer limit value of 2^31-1.
Is there a better way to store a time stamp and do a later comparison, or convert the string directly into a double format from the file?
Thanks!