明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2022|回复: 1

[运行时] AutoCAD2011的一个bug?

[复制链接]
发表于 2010-6-8 15:16:00 | 显示全部楼层 |阅读模式
在创建CAD2011进程时,出现一个问题,通过下列方法已经解决了。
见代码。问题在于:
对于2000到2010版本
通过这段可以成功创建
                    Type objClassType = Type.GetTypeFromProgID(ProgID);
                    //新建2011版本时,报异常,但是acad进程会创建,再转入异常去获取该进程
                    //其他版本不会出现异常,不会转入异常
                    this._App = Activator.CreateInstance(objClassType);
但对于2011则报错,所以想到了下列代码的那段异常处理,不知道还有人是否有这个问题,或者有更好的解决办法?
下列代码已经通过测试,2000值2011个版本均可。
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. using System.Reflection;
  6. using System.Diagnostics;
  7.     /// <summary>
  8.     /// AutoCAD版本
  9.     /// </summary>
  10.     public enum AcadVersion
  11.     {
  12.         /// <summary>
  13.         /// AutoCAD2000~2003
  14.         /// </summary>
  15.         R15 = 15,
  16.         /// <summary>
  17.         /// AutoCAD2004~2006
  18.         /// </summary>
  19.         R16 = 16,
  20.         /// <summary>
  21.         /// AutoCAD2007~2009
  22.         /// </summary>
  23.         R17 = 17,
  24.         /// <summary>
  25.         /// AutoCAD2010~2011~更高
  26.         /// </summary>
  27.         R18 = 18,
  28.          /// <summary>
  29.         /// 其他版本
  30.         /// </summary>
  31.         Other=-1
  32.     }
  33. /// <summary>
  34.         /// 构造函数,创建系统的默认版本, 使用现有acad进程, 若不存在则启动新的acad进程
  35.         /// </summary>
  36.         public AcadApplication()
  37.         {
  38.             ProgID = "AutoCAD.Application";
  39.             AcadApplicationCall();
  40.         }
  41.         /// <summary>
  42.         /// 构造函数, 指定版本创建acad,使用现有acad进程, 若不存在则启动新的acad进程
  43.         /// </summary>
  44.         public AcadApplication(AcadVersion version)
  45.         {
  46.             ProgID = "AutoCAD.Application" + "." + System.Convert.ToUInt32(version);
  47.             if (version == AcadVersion.Other)
  48.             {
  49.                 ProgID = "AutoCAD.Application";
  50.             }
  51.             AcadApplicationCall();
  52.         }
  53.         private void AcadApplicationCall()
  54.         {
  55.             Process[] p = Process.GetProcessesByName("acad");
  56.             bool exist_acad = false;
  57.             if (p == null || p.Length == 0)
  58.                 exist_acad = false;
  59.             else
  60.                 exist_acad = true;
  61.             if (!exist_acad)
  62.             {
  63.                 try
  64.                 {
  65.                     Type objClassType = Type.GetTypeFromProgID(ProgID);
  66.                     //新建2011版本时,报异常,但是acad进程会创建,再转入异常去获取该进程
  67.                     //其他版本不会出现异常,不会转入异常
  68.                     this._App = Activator.CreateInstance(objClassType);
  69.                     this._IsNewApp = true;
  70.                 }
  71.                 catch (System.Exception e)
  72.                 {
  73.                     //获取acad进程
  74.                     this._App = System.Runtime.InteropServices.Marshal.GetActiveObject(ProgID);
  75.                     this._IsNewApp = true;
  76.                 }
  77.             }
  78.             else
  79.             {
  80.                 try
  81.                 {
  82.                     this._App = System.Runtime.InteropServices.Marshal.GetActiveObject(ProgID);
  83.                     this._IsNewApp = false;
  84.                 }
  85.                 catch
  86.                 {
  87.                     Type objClassType = Type.GetTypeFromProgID(ProgID);
  88.                     this._App = Activator.CreateInstance(objClassType);
  89.                     this._IsNewApp = true;
  90.                 }
  91.             }
  92.         }

评分

参与人数 1明经币 +2 收起 理由
雪山飞狐_lzh + 2 【好评】表扬一下

查看全部评分

发表于 2010-6-8 18:09:00 | 显示全部楼层

这么快就用2011了,呵呵

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 23:26 , Processed in 0.166140 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表