hi i have the following code to check if the system time is equal to a time that i define on a timer event:
TDateTime tempocurrente = Time();
TDateTime tempo = StrToTime("10:52");
if (tempo==tempocurrente) do something;
But when the time is 10:52 the trigger doesnt seems to work.
TDateTime tempocurrente = Time();
TDateTime tempo = StrToTime("10:52");
if (tempo==tempocurrente) do something;
But when the time is 10:52 the trigger doesnt seems to work.