0

Is it possible to remove or disable these errors? Ie, that they would not be displayed, but the application was simply closed. Is this possible? Example error: Click

Kishore
  • 653
  • 6
  • 16
Ronohx
  • 71
  • 6

1 Answers1

1

You would need to wrap the code that is generating this exception in a try...catch block and close the application in the catch.

See this article for more information about handling exceptions in .NET.

Lews Therin
  • 3,707
  • 2
  • 27
  • 53