Neil
Fri Sep 29 17:43:59 CDT 2006
You can set a breakpoint in the exception handler and check the debugger's
watch value, $exception. You can also type this into the immediate window to
display a summary.
--
-------------------------
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC
"Kevin" <sure@why.not> wrote in message
news:eHUupA64GHA.3452@TK2MSFTNGP05.phx.gbl...
> Fabien, tnx for the answer, but i cant modify the code and it`s just catch
> without ()
>
> Fabien wrote:
>> Hi,
>>
>> Put a break point in your block catch and check the exception variable
>> "e" for example:
>>
>> catch (exception e),
>>
>> BR
>>
>>
>> Fabien Decret
>> Windows Embedded Consultant
>>
>> ADENEO (ADESET)
>>
http://www.adeneo.adetelgroup.com/
>>
>>
>>
>>
>> Kevin a écrit :
>>
>>> hi,
>>>
>>> in my current project there is a lot of code like this
>>>
>>> try
>>> {
>>> ......
>>> }
>>> catch
>>> {
>>> .........
>>> }
>>>
>>> is there some way to see the exception type and message while debugging
>>> this code(i dont have rights to change it on the TFS)?
>>>
>>> thanks
>>