.Net中使用com组件后发生System.ArithmeticException异常的解决办法(Message=算术运算中发生溢出或下溢。)

Posted zlb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.Net中使用com组件后发生System.ArithmeticException异常的解决办法(Message=算术运算中发生溢出或下溢。)相关的知识,希望对你有一定的参考价值。

最近在开发一个.Net程序,其中涉及到对com组件的调用,或者第三方DLL调用,

在调用完以后如果使用一些小的测试程序继续运行,一切正常,但是在使用带有GUI的form程序,或者WPF程序中,继续执行时,总是出现以下异常Exception: System.ArithmeticExceptionMessage: 算术运算中发生溢出或下溢。

  “设置属性“System.Windows.FrameworkElement.Height”时引发了异常。”,行号为“6”,行位置为“14”。

在 System.Windows.Markup.WpfXamlLoader.Load(XamlReader xamlReader, IXamlObjectWriterFactory writerFactory, Boolean skipJournaledProperties, Object rootObject, XamlObjectWriterSettings settings, Uri baseUri)
在 System.Windows.Markup.WpfXamlLoader.LoadBaml(XamlReader xamlReader, Boolean skipJournaledProperties, Object rootObject, XamlAccessLevel accessLevel, Uri baseUri)
在 System.Windows.Markup.XamlReader.LoadBaml(Stream stream, ParserContext parserContext, Object parent, Boolean closeStream)
在 System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
在 Evidence.MVVM.Views.WinIdentityVeri.InitializeComponent() 位置 E:\Win.xaml:行号 1

解决方法:

1.声明一个DLL掉用

[DllImport("msvcr71.dll", CallingConvention = CallingConvention.Cdecl)]
       public static extern int _controlfp(int n, int mask);
       internal void ResetFPCR()
       {
           const int _EM_OVERFLOW = 0x0009001F;
           const int _MCW_EM = 0x000FFFFF;
           _controlfp(_EM_OVERFLOW, _MCW_EM);
       }

2.在调用完com组件后,调用以上方法,如:

//这里调用com组件

//然后执行Reset方法

ResetFPCR();

如果没有msvcr71.dll 从网上下载 然后放到bin目录下

以上是关于.Net中使用com组件后发生System.ArithmeticException异常的解决办法(Message=算术运算中发生溢出或下溢。)的主要内容,如果未能解决你的问题,请参考以下文章

AccessViolationException 在使用 COM 互操作的 .NET 应用程序中随机发生

React 源码分析:调用ReactDOM.render后发生了什么

Android应用程序中,没有使用服务组件,但是偶尔部署软件时,却报错com.android.exchange.ExchangService

在 Windows XP 中使用 .NET 刻录 DVD 需要哪些基本 COM 组件?

c#编程,添加引用时,COM和.NET有啥区别?代表啥意思

asp.net的MVC中使用office word 2003的com组件问题!!求助!急!