sclkkk 发表于 2013-12-26 16:22:05

求助。。。。打开dwg文档。。

using AcadApp = Autodesk.AutoCAD.ApplicationServices.Application;

      public void openMap(ArrayList pList, string str)
      {
            DocumentCollection docs = AcadApp.DocumentManager;
            for (int i = 0; i < pList.Count; i++)
            {
                string mapName = pList.ToString();
                string fileName = str + @"\" + mapName;
                try
                {
                  docs.Open(fileName, false);
                }
                catch (System.Exception ex)
                {
                  ex.Message.ToString();
                }
            }
      }
报Invalid execution context 看来些网上的资料都是这样的啊

sclkkk 发表于 2013-12-27 08:46:48

在同一个解决方案下,上面一样的代码有的项目中可以打开有的就报Invalid execution context 错误,是怎么回事啊?
页: [1]
查看完整版本: 求助。。。。打开dwg文档。。