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
 
Back
Top