sumit Posted July 29, 2007 Posted July 29, 2007 Can some please give me the script to read current time in minutes and seconds... Would really appreciate .
Infinitex0 Posted July 29, 2007 Posted July 29, 2007 Like this? $minutes=@MIN $seconds=@SEC MsgBox(0, "Current time", $minutes & ":" & $seconds) The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
WhiteSpace Posted July 29, 2007 Posted July 29, 2007 (edited) Can some please give me the script to read current time in minutes and seconds... Would really appreciate . Or if you mean current hours today in minutes this would give the input you wanted. MsgBox(0, "Current Time Is ", @min + @hour *60 & ":" & @sec) Edited July 29, 2007 by WhiteSpace
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