请教如何让程序不弹出错误提示
请问vb.net如何让程序不弹出错误提示
程序运行中出现下列错误提示, 问你继续还是退出.
非常的烦人,因为主程序运行中会打开多个窗体,出错也只是其中一个出错,但是出这样的错误提示却影响到其他窗口工作.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.InvalidCastException: Conversion from string "" to type 'Integer' is not valid. ---> System.FormatException: Input string was not in a correct format.
at Microsoft.VisualBasic.CompilerServices.Conversions.ParseDouble(String Value, NumberFormatInfo NumberFormat)
at Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(String Value)
--- End of inner exception stack trace ---
at Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(String Value)
at foks.F4.Timer2_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
程序经常弹出错误提示,但不是致命的依然可以运行,
实在没有时间去一个个找错误在那里!!!!
请问各位大神,如何能让程序不弹出任何的错误提示呢?
比如调试什么的,非要你点一下确定才继续运行,真烦人啊
上次有论坛朋友提示: 关闭异常提示,但问题依旧会弹出
菜单里面:调试---异常..
展开,把你不要的异常取消掉就可以了.
继续请教高手如何能忽略讨厌的错误提示呢?
[解决办法]
加上try catch
[解决办法]