http://www.vb-helper.com/HowTo/withev2.zip

	Purpose
Make a class that raises an event

	Method
Declare the event as in:

    Public Event BadSsn(ByVal bad_ssn As String)

Raise it as in:

    RaiseEvent BadSsn(ssn)

In the main program, declare an instance of the class WithEvents so the
program can catch the event.

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
