Short pause

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to pause the action of my code for a quarter second or so. What can
I use to do this?

Thanks!

Bob
 
BobAchgill said:
I need to pause the action of my code for a quarter second or so.
What can I use to do this?

System.Threading.Thread.Sleep(250)

But why?


Armin
 
I am "Hooking the keyboard" and it seems that I need to give the hooking
process some slack time so my code does not get ahead of the hooking process.
At least the pause is helping. Thanks!

Bob
 
Maybe you can create a class with a property you can set.
Make a boolean property, set it to false in the begining, and dont start
accepting any info from the keyboard until the paramter is set to true -
once you can confirm the hook is complete?

Just a thought.

Miro
 
BobAchgill said:
I am "Hooking the keyboard" and it seems that I need to give the hooking
process some slack time so my code does not get ahead of the hooking process.
At least the pause is helping. Thanks!

It's helping, but it's not guaranteed to work. Just because you are
pausing your thread for a while, doesn't mean that the thread that is
doing the hooking is guaranteed to run during that time. If the computer
is busy doing something else, the hooking process might need more time
to complete.

I agree with Miro that you should try to determine when the process
actually is complete, instead of just waiting for a while and hoping
that it is enough.
 
Back
Top