Event driven programming
Computer Science and ICT discussion, revision, exam and homework help.
-
Re: Event driven programming
Event-driven programming is a flexible way to allow your programs to respond to many different inputs or events. This style is easy to understand and program. The problem is when your programs need to become more sophisticated and must deal with more than just you entering information on the keyboard. The events may be
Pressing a key
RS-232 serial data
Digital sound recording and playback
System events
Touch-screen events
Event-driven programs improve on sequential programs by having a central event handler and dispatcher that waits for an event (any event) to occur, and then processes that event by calling that event handler.
Separation of the event detection and the event handling is an important technique for keeping your program simple and flexible -
Re: Event driven programming(Original post by marygoss)
Event-driven programming is a flexible way to allow your programs to respond to many different inputs or events. This style is easy to understand and program. The problem is when your programs need to become more sophisticated and must deal with more than just you entering information on the keyboard. The events may be
Pressing a key
RS-232 serial data
Digital sound recording and playback
System events
Touch-screen events
Event-driven programs improve on sequential programs by having a central event handler and dispatcher that waits for an event (any event) to occur, and then processes that event by calling that event handler.
Separation of the event detection and the event handling is an important technique for keeping your program simple and flexible
can you tell me where I can find more info on event driven programming and its key features and trigger please