I have 2 timers in MVB 2008 Express, one to control the fading in of a window and another to call a beep function every few seconds or so. The problem is that while the window is fading in, it pauses while the timer beeps. Any ideas? Threads maybe?
|
|
Without seeing your code, I have a feeling that this is indeed related to threads. It sounds like you have a Windows Application, with two What is happening here is that both of these functions defined in the To correct this problem, you'll need to have one (if not both) of the code functions that are called when the The easiest way to achieve this is via a BackgroundWorker component (or class). Alternatively, you can instantiate and use your own ThreadStart delegate (which is what the BackgroundWorker component does anyway!) Something like the following:
|
||
|
