If you try accessing UI from a timer event, you'll Exception: Invalid cross-thread access . This happens because the timer code is running on different thread and trying to access controls on the main thread. Here's how to fix it: Edit: thanks to jackbond
Read More...