.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
eNoDocumen t Exception when auto-loadi ng CustomCUIX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi, I have the following block of code in myPlugin.cs in IExtensionApplication.Initialize() method...
object oldCmdEcho = Application.GetSystemVariable("CMDECHO");
object oldFileDia = Application.GetSystemVariable("FILEDIA");
Application.SetSystemVariable("CMDECHO", 0);
Application.SetSystemVariable("FILEDIA", 0);
Document doc = Application.DocumentManager.MdiActiveDocument;
doc.SendStringToExecute(
"_.cuiload "
+ "MyCui.cuix"
+ " ",
false, false, false
);
Application.SetSystemVariable("FILEDIA", oldFileDia);
Application.SetSystemVariable("CMDECHO", oldCmdEcho);
(Assuming MyCui.cuix already exists)
It's fine if I load this managed dll via "netload" command (after the document is loaded)
But it seems there is a problem if I try to load this using demand load (auto-load at AutoCad startup)
It seems like DocumentManager.MdiActiveDocument gets called before the document is fully loaded.
This code gives me eNoDocument exception.
Anybody else have had the same issue?
Is there other approaches to auto-load the custom cuix?
Thank you for your help always.
Solved! Go to Solution.
Re: eNoDocumen t Exception when auto-loadi ng CustomCUIX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
>> Is there other approaches to auto-load the custom cuix?
don't use SendCommand, at least not when you start it during the initialization-process.
You have either the chance to use an eventhandler watching AutoCAD to get quiescent (and then do your SendCommand) or load the menues with the menu-collection-functions.
Make sure that when you already have loaded the menu (AutoCAD normally starts with the menues that where loaded previously), so an additional load would result in an error.
>> using demand load (auto-load at AutoCad startup)
Be careful! "demand-load" loads a command (and it's modules) at the time a command is started by the user, not when AutoCAD starts! "demand-load" and "load during AutoCAD-start" are two different things!
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
Re: eNoDocumen t Exception when auto-loadi ng CustomCUIX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Better use instead:
AcadDocument acdoc = doc.AcadDocument as AcadDocument;
acdoc.SendCommand("_CUILOAD+ "MyCui.cuix"
+ " ",
"\n");
and also use:
using Autodesk.AutoCAD.Interop.Common;
using Autodesk.AutoCAD.Interop;
in References
Just on the quick glance, sorry
~'J'~
C6309D9E0751D165D0934D0621DFF27919
