What does this mean?

  • Thread starter Thread starter Jorge
  • Start date Start date
J

Jorge

Iam a newbie. What does this error message mean?

A first chance exception of type 'System.ArgumentException' occurred
in Microsoft.VisualBasic.dll
 
Iam a newbie. What does this error message mean?

A first chance exception of type 'System.ArgumentException' occurred
in Microsoft.VisualBasic.dll

Where does the exception occur? The exception is typically thrown when you
are passing an invalid value to a method/"function".
 
A first chance exception of type 'System.ArgumentException' occurred
in Microsoft.VisualBasic.dll

Does the program continue to run, or does it jump into one of your
Exception handlers? If it's the former, then the IDE is probably
watching for *any* exception, handled or not, and telling you about it.
So long as the program continues normally, you probably shouldn't
worry about it.

If it's the latter, examine the StackTrace in the Exception object,
looking for the last line of your code that executed before it rambled
off into the Visual Basic dll. That will be the line of code that's
causing the problem.

HTH,
Phill W.
 
it would help if you took your C# advertising and shoved them up your
ass

THERE IS NO RAD IN C#

-Aaron
 

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