building routine to iterate through all event arg values for given event

  • Thread starter Thread starter astro
  • Start date Start date
A

astro

I'm having a difficult time looping through the help documentation in VB.Net
in an attempt to understand the various "e" event arguements.

Is there a way to loop through all arguements using the system.reflection?

I could then paste this code in the event I'm interested in and get a list
of available arguements and their populated values.

Thanks.
 
I could then paste this code in the event I'm interested in and get
a list of available arguments and their populated values.

Alternatively, put a breakpoint into an Event Handler you're
interested in, and when execution hits that breakpoint, go to the
Immediate window and type:

?e

HTH,
Phill W.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top