08-20-2007 10:58 PM
08-20-2007 11:33 PM
"string to timestamp"?
@resrchengee wrote:
...Simply change the string (seconds) to time stamp with the string to time stamp under timing palet....
08-20-2007 11:39 PM
08-21-2007 05:08 PM
08-22-2007 12:11 AM
08-22-2007 04:58 AM
@resrchengee wrote:
ahh my apologies .. I meant string to dbl then dbl to time stamp.
08-22-2007 05:00 AM
It is. Since 8.0, the Scan from String function can do the same thing as the VI I posted earlier in the thread.
@jdunham wrote:
This is really the kind of thing that should be built into LabVIEW,
09-15-2009 05:08 AM
A simple solution is the use of datetime.parse(String, IFormatProvider) from .NET Framwork 2.0
So you can select a specific culture (I didn't found that in Labview)
1. Constructor Node: Assembly mscorlib 2.0.0.0, Object: System.Globalization -> CulturInfo(String name)
Culture/Language Name:
(empty string): Invariant culture
"en-US": English (United States)
2. Invoke Node, Assembly mscorlib 2.0.0.0, Object System -> static Method DateTime.Parse
s: string containing a date and time to convert.
provider : IFormatProvider from 1.
10-23-2009 08:38 AM