eNoDocument Exception when auto-loading CustomCUIX

eNoDocument Exception when auto-loading CustomCUIX

Anonymous
Not applicable
791 Views
2 Replies
Message 1 of 3

eNoDocument Exception when auto-loading CustomCUIX

Anonymous
Not applicable

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.

 

 

0 Likes
Accepted solutions (1)
792 Views
2 Replies
Replies (2)
Message 2 of 3

Alfred.NESWADBA
Consultant
Consultant
Accepted solution

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
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
Message 3 of 3

Hallex
Advisor
Advisor

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