0
我正在用Windows Form,使用C#編寫AutoCAD 2013 .NET插件。 當我在命令中使用C#DataGridView和Windows窗體
Autodesk.AutoCAD.ApplicationServices.Application.ShowModelessDialog (new Form1());
,而不是下一個代碼模式窗體
System.Windows.Forms.Application.EnableVisualStyles();
// System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false); // here I get exception too
System.Windows.Forms.Application.Run (new Form1());
我lock_exception在該行
BlockTableRecord btrRecord = new BlockTableRecord();
btTable.UpgradeOpen(); // <--- here Exception
謝謝提前。