moonknightt
Programmer
IS there a way to convert this Varchar to a date time
2796646:17:25:12 08-06-2005
2796646:17:25:12 08-06-2005
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
stringvar t := '2796646:17:25:12 08-06-2005'; //replace with your field
stringvar t := Mid(t,instr(t,':',1)+1, length(t));
stringvar array t2 := split(t, ' ');
cdatetime(t2[2] & ' ' & t2[1])