Jump to content

Recommended Posts

Posted

#include <Date.au3>

While 1

If (@HOUR = 1 And @MIN = 0 AND @SEC = 0) Then

ExitLoop

EndIf

WEnd

Shutdown(17)

I don't know what is wrong with my code...It cannot work...

How can fix this problem?

Thanks so much.

Elson :bye:

Posted (edited)

If (@HOUR = 1 And @MIN = 0 AND @SEC = 0) Then...

This will check for the exact time

there could be a here and there maybe of one second,

you miss the perfect time and are again at the starting of the loop

Dont use @SEC = 0, use a range instead like @SEC < 50 or somewhat..!

Hope this helps :)

Regards

Edited by PhoenixXL

My code:

PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

  • Moderators
Posted

PhoenixXL makes a good point. I would suggest changing the _NowTime parameter to 4 so it disregards seconds. This will change it to 24hour format, so it would be something like this:

#include <Date.au3>

While 1
 If _NowTime(4) = "23:59" Then
  Shutdown (17)
 EndIf
WEnd

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...