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
  • 613
  • 6
  • 16
Ronohx
  • 39
  • 5

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,519
  • 2
  • 22
  • 50