Line: | Forms Line | Type: | Exercise |
You should have completed: | Calculator | This topic leads to: | Car Dealer |
A fundamental difference between programming windows apps and console apps is that the timing of events happens at the user's discretion. As they interact with the interface, the program responds. In comparison console applications do something and then demand interaction from the user.
Sometimes however, you want an application to do something at a regular interval, whether the user is interacting or not, such as update the latest data, or the time. This can be achieved with the invisible Timer control. This triggers events at regular intervals (set by properties on the control) which can then be used to make something happen in your program.