T
tbergman
Guest
It's actually not that hard to do in pure Progress. I prefer the .net way and the DateTime parse method is incredibly powerful for converting a wide variety of date strings. But here's a pure Progress way. def var MyDateTime as dateTime . def var oldDateFormat as char . oldDateFormat = session : date-format . session : date-format = "YMD" . MyDateTime = DateTime ( REPLACE ( "2015-09-21T14:22:34" , "T" , " " )). session : date-format = oldDateFormat. MESSAGE MyDateTime VIEW-AS ALERT-BOX .
Continue reading...
Continue reading...