.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Null Reference Thrown at Autodesk.A utoCAD.Edi torInput.E ditor.get_ IsQuiescen t()
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
189 Views, 1 Replies
11-04-2011 04:59 PM
I have a simple method which checks and records the existence of table entities.
When the method exits (in a VS debug session and control returns to AutoCAD), AutoCAD throws this exception.
System.NullReferenceException: Object reference not set to an instance of an object. at Autodesk.AutoCAD.EditorInput.Editor.get_IsQuiescent() at Autodesk.AutoCAD.Ribbon.RibbonPaletteSet.AcadAppli cation_Idle(Object sender, EventArgs e) at System.EventHandler.Invoke(Object sender, EventArgs e) at Autodesk.AutoCAD.ApplicationServices.Application.r aise_Idle(Object value0, EventArgs value1) at Autodesk.AutoCAD.ApplicationServices.Application.O nIdle()
And it seems to endlessly throw it in an infinite loop.
Here's the method:
[CommandMethod("HasTables")]
public static void Update__Utility_AcadFixTablesLog_HasTables() {
const string connectionString = @"......";
using (var db = new ProductCatalogEntities(connectionString)) {
using (var document = Application.DocumentManager.MdiActiveDocument) {
TypedValue[] typedValues = { new TypedValue((int)DxfCode.Start, "ACAD_TABLE") };
SelectionFilter selectionFilter = new SelectionFilter(typedValues);
var rec = db.AcadFixTablesLogs.FirstOrDefault(_ => String.Compare(_.FileName, document.Name, false) == 0);
var promptSelectionResult = document.Editor.SelectAll(selectionFilter);
var hasTablesResult = promptSelectionResult.Status == PromptStatus.None;
if (rec != null) {
rec.HasTables = hasTablesResult;
db.SaveChanges();
}
}
}
}
Any ideas? Thanks!
Re: Null Reference Thrown at Autodesk.A utoCAD.Edi torInput.E ditor.get_ IsQuiescen t
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-07-2011 04:08 PM in reply to:
calvindale
Are you calling this routine directly from your pallett? Sounds like you are call this from the "ApplicationContext". Try using SendStringToExec to force it into "DocumentContext" and see if that fixes it.
HomeBoy Out
