Expected end of statement
Line (3): "Execute FIle timestamp".作者: bluelight 时间: 2006-4-24 10:13
Object required: 'timestamp'
Line (3): "ExecuteFile timestamp.vbs".
文件和test script放在同级目录,文件里写了下面函数:
function add_TimeStamp(original_value,now_time)
Dim str ,temp
if( Len(Cstr(month(now_time))) = 1) then
temp = "0"+Cstr(month(now_time))
end if
temp = temp + Cstr(day(now_time))
str = "TD_"+original_value +"_"+ temp
add_TimeStamp = str
end function