错误:类型初始化异常

发布于 2024-12-24 02:12:45 字数 660 浏览 2 评论 0原文

我找到了一个代码,可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

可是我不能没有你 2024-12-31 02:12:45

我的理解是,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.

ま昔日黯然 2024-12-31 02:12:45

也许检查 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

随心而道 2024-12-31 02:12:45

RealDWG 就是您所需要的。

在 RealDWG 文档中:

无论您使用 Microsoft Visual C# .NET 还是 Visual Basic .NET,使用 Visual Studio 和 ObjectARX 托管包装器设置 .NET 解决方案的基本步骤都是相同的。

开始在 Microsoft Visual Studio 中使用 ObjectARX 托管包装器

  1. 在 Visual Studio .NET 中,创建一个类库解决方案和项目。
  2. 从“项目”菜单或“解决方案资源管理器”中选择“添加引用”。
  3. 浏览到 ObjectARX SDK 的 \inc 目录并选择
    acdbmgd.dll 和 acmgd.dll。
  4. 在主类文件中,添加您将使用的命名空间。

例如,在 C# 中:

using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Runtime;

在 VB .NET 中:

Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
Imports Autodesk.AutoCAD.RuntimeThe

ObjectARX SDK 在 \samples\dotNet 目录中提供 .NET 示例。

本节主题 在

  • 托管应用程序中定义 AutoCAD 命令 定义
  • 可从 AutoLISP 调用的方法
  • 使用实例和静态命令方法
  • 在 AutoCAD 中加载托管应用程序
  • 管理托管应用程序中的异常
  • 在托管应用程序中使用事务
  • 使用 ResultBuffer 类型
  • 管理选择集
  • 用户界面访问 的托管类
  • 使用托管应用程序初始化和加载时间优化

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

  1. In Visual Studio .NET, create a class library solution and project.
  2. Select Add Reference from the Project menu or Solution Explorer.
  3. Browse to the \inc directory of the ObjectARX SDK and select
    acdbmgd.dll and acmgd.dll.
  4. In the main class file, add the namespaces you will use.

For example, in C#:

using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Runtime;

In VB .NET:

Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
Imports Autodesk.AutoCAD.RuntimeThe

ObjectARX SDK provides .NET samples in the \samples\dotNet directory.

Topics in this section

  • Defining AutoCAD Commands in Managed Applications
  • Defining Methods That Can Be Called From AutoLISP
  • Using Instance and Static Command Methods
  • Loading Managed Applications in AutoCAD
  • Managing Exceptions in Managed Applications
  • Using Transactions in Managed Applications
  • Using the ResultBuffer Type
  • Managing Selection Sets
  • User Interface Access with Managed Classes
  • Using Managed Application Initialization and Load-Time Optimization
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文