concept Posted December 14, 2007 Posted December 14, 2007 I got a file where there is a date. I got a script that converts that date into correct format year/month/day I do it rather bluntly with {left} {delete} and sutch so i a would rather not paste this here but datediff always returns 0. $lopp = wingettext("temp - Notepad") $tana = _NowCalc() $iDateCalc = _DateDiff('d',$lopp & "00:00:00",$tana) winactivate("Untitled - Notepad") Thank you!
Developers Jos Posted December 14, 2007 Developers Posted December 14, 2007 (edited) Assuming the variable $lopp contains: "YYYY/MM/DD" you need to add a space before the time: $iDateCalc = _DateDiff('d', $lopp & " 00:00:00", $tana) Edited December 14, 2007 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now