chepps 0 Newbie Poster

Hi,
I would like to ask you, if there is a way, by which we can see which all handlers are added in an active windows form.(vb.net)
The matter is, iam having MDI forms...and i always will use many forms. When calling one form(say Form2), then the previous form(say Form1) is closed and Form2 is loaded.
Here before closing Form1, if there any Handlers added but not removed(thru coding), then i have to search all such un-removed handlers in that Form1, then remove those handlers and then close Form1. Then load form2. This is the need. Though we will be putting 'RemoveHandler' for all the event handlers in form, sometimes we may miss to write that in the code. So to be on a safer side, before closing an active form, i wanted to track the handlers and check if removed. ANd if not, then i want to remove it.
How can i do this.
Please anyone help me in this. I searched google a lot. Maybe my keyword is wrong that i dind't get correct answer.