It is common to have situations that we need to delay the execution of the code for a period, either to show or delete a message or something visual soon after, either to try something again, wait for something in a test or something creative th...
I need help to make a timer for a page, and it must be different for each difficulty of a game, for example, for easy mode has 1 min, for intermediate has 4 min, and for difficult 8 minutes .
I need to do a check in the database once a day .
I'm thinking of using the class Timer (System.Timers) . Will the time contactor feature burden / slow down other system services?
Is this solution advisable within a Windows servi...
What is the difference between scheduleAtFixedRate and schedule ?
I'm developing an app on Android that I want to have a delay of 50 minutes before starting an action and repeat that same action in the next 50 minutes, but I'd li...
Explanation:
Next, I have a TThread running parallel to Main Thread . And I have a routine to give a fade in the image. Well, the important thing is that I do this fade in a certain time in milliseconds, so I did the routine...
I'm doing a little game that flashes some orderly images in the frame, my goal is for them to blink in order, but they are blinking all together:
public class Logica {
List<Integer> seqAlea = new ArrayList<Integer>();
List...
I have a question, I'm making a game server and I need a specific function to be run every 10 seconds.
I know that Thread.Sleep() exists (in combination with while(true) ), but it does not seem to be a good option
I've heard o...
I need to update my label at all times when I use timer it updates, but it crashes the program
Program.cs
public static String Uso()
{
ManagementClass mc = new ManagementClass("win32_processor");
ManagementObjectColle...
I made a stopwatch (ie a timer) that should be executed when a certain button is clicked. I was able to do the timer, but I can not shut it down. After calling it is timing "forever" rs.
I would like you to help me.
Code:
package controller...
I need to put a timer in that perl below:
It works by firing emails in a row to the end of the mailing list.
Example if the list has 1 thousand emails it will fire e-mail until the end.
I would like to put a timer in this code
EX: fi...