错误:类型初始化异常
我找到了一个代码,可以使用 objectARX 命令在 autocad 中打开 dwg 文件。当我在类库项目中编写该代码时,该代码可以成功运行,但是当我想将此代码放入我的 Windows 应用程序中时,就会出现问题。它给出我这个错误消息:
'<; 的类型初始值设定项模块>'抛出异常。
内部异常:C++ 模块在处理过程中加载失败 初始化。
我的代码是:
String MyDWGFilePath = @"\\Server\SharedFolder\Projects\File1.dwg";
DocumentCollection dm = Application.DocumentManager;
Document doc = null;
if(File.Exists(MyDWGFilePath))
{
doc = dm.Open(MyDWGFilePath, false);
Application.DocumentManager.MdiActiveDocument = doc;
}
注意: 我已从 autocad 安装文件夹中添加了 acdbmgd.dll 和 acmgd.dll,还从 COM 引用中添加了 AutoCAD 和 AXDBLib。
请帮我...
I've found a code to open a dwg file in autocad with objectARX commands.this code works successfully when i wrote it in a Class Library project, but the problem is happened when i want to place this code in my windows application.It gives me this error message :
The type initializer for '< Module >' threw an exception.
Inner Exception : The C++ module failed to load during process
initialization.
my code is :
String MyDWGFilePath = @"\\Server\SharedFolder\Projects\File1.dwg";
DocumentCollection dm = Application.DocumentManager;
Document doc = null;
if(File.Exists(MyDWGFilePath))
{
doc = dm.Open(MyDWGFilePath, false);
Application.DocumentManager.MdiActiveDocument = doc;
}
Note: I've add acdbmgd.dll and acmgd.dll from autocad installed folder and also AutoCAD and AXDBLib from COM references.
please help me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我的理解是,Autodesk 将其部分(但不是全部*)AutoCAD 库设置为无法在 AutoCAD 地址空间之外运行。您可能会遇到此许可限制。 (我正在 Autodesk 的网站上爬行以获取支持这一点的参考)。
编辑: RealDWG 是 Autodesk 希望您购买的产品如果您要在 AutoCAD 之外进行 .dwg 操作。 (仍在寻找仅在 acad 链接内部运行的 AcDbMgd...)
(*)我知道 AcGe 类/dll 组可以在 AutoCAD 之外使用 - 我曾经在一些单元测试中使用它们。我认为任何操作 .dwg 数据库的操作都必须在 AutoCAD 内部运行。
My understanding is that Autodesk riggs some (but not all*) of their AutoCAD libraries to not be runnable outside of an AutoCAD address space. You may be running into this licensing restriction. (I am crawling Autodesk's web site for a reference to back this up).
Edit: RealDWG is the product Autodesk wants you to buy if you are going to do .dwg manipulation outside of AutoCAD. (Still looking for the AcDbMgd only operates inside of acad link...)
(*) I know that the AcGe group of classes/dlls are usable outside of AutoCAD - I used to use them in some unit testing. I think that anything manipulating the .dwg database must run inside of AutoCAD.
也许检查 Windows 项目的目标框架,将其更改为 .Net Framework x,如果它设置为 .Net Framework 客户端配置文件
maybe check target framework for windows project, change it to .Net Framework x, if it is set to .Net framework client profile
RealDWG 就是您所需要的。
在 RealDWG 文档中:
无论您使用 Microsoft Visual C# .NET 还是 Visual Basic .NET,使用 Visual Studio 和 ObjectARX 托管包装器设置 .NET 解决方案的基本步骤都是相同的。
开始在 Microsoft Visual Studio 中使用 ObjectARX 托管包装器
acdbmgd.dll 和 acmgd.dll。
例如,在 C# 中:
在 VB .NET 中:
ObjectARX SDK 在 \samples\dotNet 目录中提供 .NET 示例。
本节主题 在
RealDWG is what you need.
In RealDWG documentation:
The basic steps to set up a .NET solution using Visual Studio and the ObjectARX managed wrappers are the same whether you use Microsoft Visual C# .NET or Visual Basic .NET.
To begin using the ObjectARX managed wrappers with Microsoft Visual Studio
acdbmgd.dll and acmgd.dll.
For example, in C#:
In VB .NET:
ObjectARX SDK provides .NET samples in the \samples\dotNet directory.
Topics in this section