695233908 发表于 2018-5-28 11:17:00

cad崩溃的问题

创建一个UserController,在Controller中访问数据库,cad崩溃的问题。。求大神解惑。。。
      
      public void ShowPaletter()
      {
            KgController kgController =new KgController();
            PaletteSet ps =new PaletteSet("控规面板");
            ps.Add("KG", kgController);
            ps.Visible = true;
      } using (Transaction trans =cadDb.TransactionManager.StartTransaction())
            {
                BlockTable bt = (BlockTable)trans.GetObject(cadDb.BlockTableId, OpenMode.ForRead);
                BlockTableRecord btRecord = (BlockTableRecord)trans.GetObject(bt, OpenMode.ForWrite);
                Polyline line =new Polyline();
                line.AddVertexAt(0,new Point2d(0,0),0,1,1);
                line.AddVertexAt(1, new Point2d(10, 10), 0, 1,1);
                btRecord.AppendEntity(line);
                trans.AddNewlyCreatedDBObject(line,true);
                trans.Commit();
            }
cad崩溃错误




695233908 发表于 2018-5-28 11:20:00

求解惑。使用的vs2010.。cad为2008中文版。.netFramework2.0..
自己顶顶。。

hengdong123 发表于 2018-11-19 20:03:00

这种问题 ,调试下不就出来了吗
页: [1]
查看完整版本: cad崩溃的问题