Q: Deploy apps with debug info.

  • Thread starter Thread starter Visual Systems AB \(Martin Arvidsson\)
  • Start date Start date
V

Visual Systems AB \(Martin Arvidsson\)

Hi!

I have created an application that doesn't quite work on my co-workers
computer.
I want to install the app with debug information, in my crazy mind i thought
that when an exception was thrown, a window would appear giving me a bit
information, but noo...

He is running windows 2k... What do i have to do in order to fix that?

Regards

Martin
 
Hi,

It will not appear if the exception is caught in your code, you could do
several things to know where the exceptions are being risen, what if you
include a MessageBox.Show in each catch block, this is easily done if your
app is small, if not you may use an EventLog component.

Also use the StackTrace proerty of the exception beside the Message
property.

what is the problem you are having , you did not mention it

cheers,
 
Back
Top