概述
未处理的“System.ArithmeticException”类型的异常出现在 system.drawing.dll 中。
在.net 中一运行就出现这个。郁闷!!!装了N次系统。到网上查添加代码后如下:
[DllImport("msvcr70.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern int _controlfp(int n, int mask);
[STAThread]
static void Main()
{
const int _EM_OVERFLOW = 0x00000004;
const int _MCW_EM = 0x0008001F;
_controlfp(_EM_OVERFLOW, _MCW_EM);
Application.Run(new Form1());
}
}
又出现下面错误:
未处理的“System.DllNotFoundException”类型的异常出现在 WindowsApplication1.exe 中。
其他信息: 无法加载 DLL (msvcr70.dll)。
各位大哥大姐帮帮忙,有谁知道的,帮忙解决一下。今天又装了系统,又是这样!!!
最后
以上就是迷路服饰为你收集整理的求救!!!各位大哥帮帮忙!未处理的“System.ArithmeticException”类型的异常出现在 system.drawing.dll 中.的全部内容,希望文章能够帮你解决求救!!!各位大哥帮帮忙!未处理的“System.ArithmeticException”类型的异常出现在 system.drawing.dll 中.所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复