The book I have here is pathetic.

It shows me how to add a class event, which is quite easy:

VB Code:
  1. Public Event UnderAge()

Now, let's say I wanted to raise an event with a couple arguments, how would I do that?

VB Code:
  1. Public Event SetTraining(ByVal bolTrained As Boolean)

Did I do that right?