Quote:

Quote:


...Script: C:\Documents and Settings\mzi\Bureaublad\KIX\testomgeving\monitorentempfiles.kix
Line : 19...





Zakonski also uses a Dutch OS...




AHH HA!

it seems that .datelastmodified returns the date/time in the format that is given by the OS.

a ? %file.datelastmodified returns "8/6/2005 11:37 pm" on my system m-d-yyyy


ok based off what you told me...

1. you dont need this line. delete or comment out. and you dont need the timeconvert() UDF
Code:
$ts[1] = timeconvert($ts[1]+$ts[2])



2. need to change this
Code:
	$ts[0] = split($ts[0],'/')
$ts[0] = $ts[0][2]+'/'+$ts[0][0]+'/'+$ts[0][1]



to

Code:
	$ts[0] = split($ts[0],'-')
$ts[0] = $ts[0][2]+'/'+$ts[0][1]+'/'+$ts[0][0]



Bryce