Click here to Skip to main content
15,908,673 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: User settings... Pin
CWIZO6-Jun-06 22:34
CWIZO6-Jun-06 22:34 
GeneralRe: User settings... Pin
Super Lloyd6-Jun-06 22:49
Super Lloyd6-Jun-06 22:49 
GeneralRe: User settings... Pin
CWIZO6-Jun-06 22:54
CWIZO6-Jun-06 22:54 
GeneralRe: User settings... Pin
Super Lloyd6-Jun-06 23:13
Super Lloyd6-Jun-06 23:13 
QuestionExecute multiple Biztalk 2004 messages from .NET Pin
mittalpa5-Jun-06 19:07
mittalpa5-Jun-06 19:07 
Questionhow to display image description? [modified] Pin
mujin035-Jun-06 10:44
mujin035-Jun-06 10:44 
QuestionDifference between .net2.0 redist and IDE? Pin
Soundman32.24-Jun-06 22:46
Soundman32.24-Jun-06 22:46 
AnswerRe: Difference between .net2.0 redist and IDE? Pin
Ed.Poore7-Jun-06 12:05
Ed.Poore7-Jun-06 12:05 
Neil_Scales wrote:
standard dialog box '..has encountered a problem and
needs to close'. Please tell microsoft about this problem.

You should be able to click on Show Error Data or a button that's labelled something like that, if I remember correctly you click several links through different dialog boxes and you will receive a text box which has the exception details in it, in the middle of details of all the loaded dlls and version information.

Neil_Scales wrote:
It's not a security setting because the tester fixed the problem by installed VS2005 without changing any settings.

Are you referencing a DLL that might only be used in VS.NET (the only example I can think of at the moment is envdte.dll which is the interface libarary for writing VS.NET add-ins (you probably won't be using that Smile | :) but it was the only example I could think of).

Best bet is to wrap your Main routine inside a try...catch block and dump any error message out to the screen or a file.  E.g.

static void Main(string[] args)
{
    try
    {
        // Do normal application stuff here
    }
    catch (Exception exception)
    {
       // Any of these options
        Console.WriteLine(exception.ToString());
       MessageBox.Show(exception.ToString());
        System.IO.File.WriteAllText(@"errorlog.txt", exception.ToString());
    }
}




You know you're a Land Rover owner when the best route from point A to point B is through the mud.

Ed
QuestionLoading dynamic assembly. Pin
webC#4-Jun-06 18:51
webC#4-Jun-06 18:51 
AnswerRe: Loading dynamic assembly. Pin
Hesham Amin4-Jun-06 21:17
Hesham Amin4-Jun-06 21:17 
GeneralRe: Loading dynamic assembly. Pin
phanikumar.kanumilli5-Jun-06 23:36
phanikumar.kanumilli5-Jun-06 23:36 
Questiongdwrapper Pin
jkirkerx4-Jun-06 11:04
professionaljkirkerx4-Jun-06 11:04 
Questionselecting a row in datagrid Pin
Siva Myneni2-Jun-06 18:48
Siva Myneni2-Jun-06 18:48 
QuestionDataSet vs. DB query Pin
Rabbit172-Jun-06 9:07
Rabbit172-Jun-06 9:07 
AnswerRe: DataSet vs. DB query Pin
Stephan Samuel2-Jun-06 10:23
Stephan Samuel2-Jun-06 10:23 
AnswerRe: DataSet vs. DB query Pin
Guffa2-Jun-06 10:35
Guffa2-Jun-06 10:35 
QuestionMySQL Query help! Pin
Rabbit172-Jun-06 8:55
Rabbit172-Jun-06 8:55 
AnswerRe: MySQL Query help! Pin
Stephan Samuel2-Jun-06 10:16
Stephan Samuel2-Jun-06 10:16 
QuestionTesting user-interface Pin
Tomerland1-Jun-06 22:51
Tomerland1-Jun-06 22:51 
AnswerRe: Testing user-interface Pin
Ed.Poore2-Jun-06 6:25
Ed.Poore2-Jun-06 6:25 
AnswerRe: Testing user-interface Pin
Stephan Samuel2-Jun-06 6:43
Stephan Samuel2-Jun-06 6:43 
AnswerRe: Testing user-interface Pin
Jim Conigliaro2-Jun-06 8:37
Jim Conigliaro2-Jun-06 8:37 
GeneralRe: Testing user-interface Pin
Stephan Samuel2-Jun-06 10:25
Stephan Samuel2-Jun-06 10:25 
GeneralRe: Testing user-interface Pin
Tomerland19-Jun-06 2:42
Tomerland19-Jun-06 2:42 
QuestionRepaint a application [modified] Pin
Resolver181-Jun-06 19:11
Resolver181-Jun-06 19:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.