<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597552#M82165</link>
    <description>I'm using an unmodifed version of the EventWatcher example that is suppiled part of the ObjectARX 2007 SDK. The main application class extends IExtensionApplication and the DefaultContextMenuExtension is added by a static method call that is part of a seperate static class.&lt;BR /&gt;
&lt;BR /&gt;
Initialize() invokes DefaultContextMenu.AddMe() which creates a ContextMenuExtension and then calls Application.AddDefaultContextMenuExtension(s_cme).</description>
    <pubDate>Mon, 03 Apr 2006 17:02:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2006-04-03T17:02:27Z</dc:date>
    <item>
      <title>Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597546#M82159</link>
      <description>When I netload the EventsWatcher sample include with ObjectARX in debug mode it throws an InvalidOperationException when it trys to add in a context menu extension :&lt;BR /&gt;
&lt;BR /&gt;
Application.AddDefaultContextMenuExtension(s_cme);&lt;BR /&gt;
&lt;BR /&gt;
If I run from outside of VS.NET, it works file. Is there some VS.NET 2005 or ACAD 2007 configuration option that I need to set to allow me to debug applications that utilize a default context menu extension?</description>
      <pubDate>Thu, 30 Mar 2006 19:34:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597546#M82159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-03-30T19:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597547#M82160</link>
      <description>reli,&lt;BR /&gt;
&lt;BR /&gt;
Not sure if this helps but......&lt;BR /&gt;
Are you using the right version of Object ARX?&lt;BR /&gt;
Are you referencing the correct acdbmgd.dll and acmgd.dll for AutoCAD 2007?&lt;BR /&gt;
&lt;BR /&gt;
Autodesk stated that they broke binary compatibility between v2006 &amp;amp; v2007 so this would be my starting point...&lt;BR /&gt;
&lt;BR /&gt;
C</description>
      <pubDate>Thu, 30 Mar 2006 21:20:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597547#M82160</guid>
      <dc:creator>cgay</dc:creator>
      <dc:date>2006-03-30T21:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597548#M82161</link>
      <description>Yes, I'm using the version from the ObjectARX 2007\inc folder. I removed and re-added the references just to make sure.</description>
      <pubDate>Thu, 30 Mar 2006 21:28:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597548#M82161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-03-30T21:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597549#M82162</link>
      <description>Maker sure LoaderLock is disabled.&lt;BR /&gt;
&lt;BR /&gt;
Inside of VS2005 with a project open, goto Debug &amp;gt; Exceptions..., expand Managed Debugging Assistants, uncheck LoaderLock.</description>
      <pubDate>Mon, 03 Apr 2006 14:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597549#M82162</guid>
      <dc:creator>RonnieWilkins</dc:creator>
      <dc:date>2006-04-03T14:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597550#M82163</link>
      <description>The same exception is thrown with Loader Lock disabled.</description>
      <pubDate>Mon, 03 Apr 2006 15:36:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597550#M82163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-03T15:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597551#M82164</link>
      <description>Is the code in which you create the context menu&lt;BR /&gt;
extension called in the Application context ?&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006/2007&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;RELI&gt; wrote in message news:5127401@discussion.autodesk.com...&lt;BR /&gt;
When I netload the EventsWatcher sample include with ObjectARX in debug mode it throws an InvalidOperationException when it trys to add in a context menu extension :&lt;BR /&gt;
&lt;BR /&gt;
Application.AddDefaultContextMenuExtension(s_cme);&lt;BR /&gt;
&lt;BR /&gt;
If I run from outside of VS.NET, it works file. Is there some VS.NET 2005 or ACAD 2007 configuration option that I need to set to allow me to debug applications that utilize a default context menu extension?&lt;/RELI&gt;</description>
      <pubDate>Mon, 03 Apr 2006 16:41:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597551#M82164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-03T16:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging ContextMenuExtensions with ACAD 2007 &amp; VB.NET 2005</title>
      <link>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597552#M82165</link>
      <description>I'm using an unmodifed version of the EventWatcher example that is suppiled part of the ObjectARX 2007 SDK. The main application class extends IExtensionApplication and the DefaultContextMenuExtension is added by a static method call that is part of a seperate static class.&lt;BR /&gt;
&lt;BR /&gt;
Initialize() invokes DefaultContextMenu.AddMe() which creates a ContextMenuExtension and then calls Application.AddDefaultContextMenuExtension(s_cme).</description>
      <pubDate>Mon, 03 Apr 2006 17:02:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/debugging-contextmenuextensions-with-acad-2007-vb-net-2005/m-p/1597552#M82165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-03T17:02:27Z</dc:date>
    </item>
  </channel>
</rss>

