Re: Retrieve parameters

2010-08-01 Thread Joseph Clark
tnet.com [mailto: > ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Glen Harvy > *Sent:* Friday, 30 July 2010 5:47 PM > *To:* ozDotNet > *Subject:* Re: Retrieve parameters > > > > Trap the error and any required data in a tcf and then upload the data to a > website for you to

RE: Retrieve parameters

2010-07-30 Thread Anthony
n..but would be nice to use some sort of reflection to automate this.. From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Glen Harvy Sent: Friday, 30 July 2010 5:47 PM To: ozDotNet Subject: Re: Retrieve parameters Trap the error and any required data in a t

Re: Retrieve parameters

2010-07-30 Thread Glen Harvy
Trap the error and any required data in a tcf and then upload the data to a website for you to process etc. Trap unhandled exceptions with       Application.ThreadException += OnThreadException; and do the same. What's an Exception Block? On 30/07/2010 3:08 PM, Anthony wrote:

Retrieve parameters

2010-07-29 Thread Anthony
Adding some debugging cod to my winforms application. When an exception is raised..i want the application to send me the error with the parameters passed? Can i use reflection to do this? Or is there a better way? Do people use the Exception Block by MS or roll their own?