Raising Events from a Class

Project Name:	Task10_3.vbp
File Folder:	Ex10_3

	This sample project demonstrates programmer-defined events. An Alarm event is defined in the Task class and that event is raised to the Task form when the task is due. An event procedure in the Task form responds to the Alarm event. This project also provides an example of capturing events from a control. A Timer control is used to check the time against the time the task is due.
	The resulting application allows you to set an Alarm. When you set the Alarm the form is minimized. When the task is due, the form beeps and redisplays. NOTE: The default time is AM, so you must enter PM for afternoon times.
	For a challenge, try the following:
- Think of another type of event that this class could generate.
- Define the event and raise it in the class, then respond to the event with an event procedure in the form.

