10-18-2017 09:28 AM
I'm trying to print a datetime property of a TDM file on a report first pager, but I only get the raw output of seconds since 0 AD.
What do I need to add to this call in the text box to get a decent format?
@@Data.Root.Properties("datetime").Value@@
Thanks!
Solved! Go to Solution.
10-18-2017 10:23 AM
If you drag and drop a time property to report you get the needed line.
@@Str(Data.Root.Properties("datetime").Value, timeformat)@@
where "timeformat" is the default setting. You can also use an string instead.
@@Str(Data.Root.Properties("datetime").Value, "#mm/dd/yyyy hh:nn:ss.ffff")@@