Creating a Collection Class

Project Name:	Task11_1.vbp
File Folder:	Ex11_1

	This sample project demonstrates building a collection class. Wrapper methods are created for the Add, Remove, and Item methods of the collection. A NewEnum method is also created to expose the collection's enumeration. This allows you to use the For Each...Next syntax with the collection class. This project also illustrates how to set a default property or method. The Item method is defined as the default method of the collection class.
	The resulting application allows you to create a set of tasks for a to do list. You can add or delete items in this list. Since the tasks are not saved, the list is lost when you exit the application.
	For a challenge, try the following:
- Implementing the code to add a task to the collection with a defined category.
- Adding the Alarm event from the prior example to set an alarm for any of the tasks in the list. NOTE: Be sure to define the Timer form in the collection class and not in the Task class so there is only one timer for any number of tasks with alarms.
