.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

eNoDocument Exception when auto-loading CustomCUIX

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
dynamicscope
588 Views, 2 Replies

eNoDocument Exception when auto-loading CustomCUIX

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.

 

 

2 REPLIES 2
Message 2 of 3

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 ... blog.hollaus.at ... CDay 2024
------------------------------------------------------------------------------------
(not an Autodesk consultant)
Message 3 of 3
Hallex
in reply to: dynamicscope

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

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost