<?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: Disabling DROPGEOM in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6663420#M9782</link>
    <description>&lt;P&gt;Looking at my code&amp;nbsp;I may have found some similar problem , since I actually have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;if (status == AcDb::kDragStart)
{
    ...
}
else
{
    ...
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm never checking specifically for&amp;nbsp;&lt;STRONG&gt;kDragEnd&lt;/STRONG&gt; (remember you might get&amp;nbsp;&lt;STRONG&gt;kDragAbort&lt;/STRONG&gt; too).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Nov 2016 20:09:12 GMT</pubDate>
    <dc:creator>Kyudos</dc:creator>
    <dc:date>2016-11-02T20:09:12Z</dc:date>
    <item>
      <title>Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6474732#M9767</link>
      <description>&lt;P&gt;EDIT: For convenience I'm just adding the latest builds to this first post &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;********&lt;/P&gt;&lt;P&gt;I've found that dealing with OLEDRAGDROP / DROPGEOM as well as grip editing makes the handling for my custom objects unnecessarily complicated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hence I'm posting my solution to disabling this function for my objects, I don't know if its the best way, but it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your &lt;STRONG&gt;AcApDocManagerReactor::documentLockModeChanged&lt;/STRONG&gt; handler you can use something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if (_tcsicmp(pGlobalCmdName, _T("OLEDRAGDROP")) == 0 || 
_tcsicmp(pGlobalCmdName, _T("DROPGEOM")) == 0 ||
_tcsicmp(pGlobalCmdName, _T("DRAGENTER")) == 0)
{
    // Prevent objects from being dragged
    for (int i = 0; i &amp;lt; aLastSelectionArray.length(); i++)
    {
        AcDbObjectId objId = aLastSelectionArray[i];
	MyObject* pObj = IsMyObject(objId);

        if (pObj != NULL)
        {
            this-&amp;gt;veto();
            break;
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 21:55:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6474732#M9767</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2025-01-27T21:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6474734#M9768</link>
      <description>The above is a solution I found &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 03 Aug 2016 04:08:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6474734#M9768</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-03T04:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6476261#M9769</link>
      <description>&lt;P&gt;Thanks for tackling this obnoxious problem! I'm a newbie at digging into the guts of AutoCAD, so could you spell out how to implement this? Explain-it-like-I'm-five style.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:18:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6476261#M9769</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-03T17:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6477942#M9770</link>
      <description>&lt;P&gt;This solution disable command if in current selection set is at least one MyObject entity. It will be cool to filter MyObject entities and start continue command without them. IMHO&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2016 10:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6477942#M9770</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2016-08-04T10:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6479496#M9771</link>
      <description>&lt;P&gt;I've attached&amp;nbsp;a sample project to demonstrate this - I've only tested it on AutoCAD 2016 x64 though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The above sample only prevents dragging and dropping of my custom objects, the sample project just globally disables it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Two simple commands:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DISABLEDD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ENABLEDD&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2016 22:26:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6479496#M9771</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-04T22:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6480409#M9772</link>
      <description>I downloaded your zip.&lt;BR /&gt;I have no idea what to do with it next.</description>
      <pubDate>Fri, 05 Aug 2016 13:01:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6480409#M9772</guid>
      <dc:creator>troma</dc:creator>
      <dc:date>2016-08-05T13:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6482941#M9773</link>
      <description>&lt;P&gt;Well, if you aren't interested in how the code works, you can (if you have AutoCAD 2016) simply load up one of the included ARX files and use the commands to enable or disable drag and drop as you like.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Aug 2016 21:57:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6482941#M9773</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-07T21:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6490125#M9774</link>
      <description>&lt;P&gt;Actually - this doesn't work as well as I hoped.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It prevents DROPGEOM - so your entities will snap back to their starting positions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In BricsCAD it prevents the Drag from being initiated in the first place - that would be better, but those commands don't come through in AutoCAD.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 03:53:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6490125#M9774</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-10T03:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6492191#M9775</link>
      <description>I loaded the ARX file and it worked well for me! However, is there a way to have it default run "Disabledd" on startup?&lt;BR /&gt;&lt;BR /&gt;I don't have the right program to open the arx files--was hoping I could open and edit it in notepad like a lisp, but nope.</description>
      <pubDate>Wed, 10 Aug 2016 17:01:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6492191#M9775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-10T17:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6493042#M9776</link>
      <description>&lt;P&gt;You can add commands to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"C:\Program Files\Autodesk\AutoCAD 2016\Support\acad2016.lsp"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to run them on startup. Obviously the ARX would need to be loaded first - but you could add the load command in the same file.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 23:11:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6493042#M9776</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-10T23:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6493049#M9777</link>
      <description>&lt;P&gt;It seems a better option to disable drag-and-drop for a custom entity is something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;//----------------------------------------------------
void MyObject::dragStatus(const AcDb::DragStat status)
//----------------------------------------------------
{
  if (status == AcDb::kDragStart)
  {
    if (m_pDropTarget == NULL)
    {
      m_pDropTarget = new MyDropTarget;
      acedStartOverrideDropTarget(m_pDropTarget);
    }
  }
  else if (status == AcDb::kDragEnd)
  {
    if (m_pDropTarget != NULL)
    {
      acedEndOverrideDropTarget(m_pDropTarget);
      delete m_pDropTarget;
      m_pDropTarget = NULL;
    }
  }
}&lt;/PRE&gt;
&lt;P&gt;Here &lt;STRONG&gt;MyDropTarget&lt;/STRONG&gt; is derived from &lt;STRONG&gt;COleDropTarget&lt;/STRONG&gt; and just disables dragging and dropping for the duration of the "drag".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer to this:&amp;nbsp;&lt;A title="Override drag-drop behavior" href="http://adndevblog.typepad.com/autocad/2013/02/override-drag-drop-behavior.html" target="_blank"&gt;Override drag-drop behavior&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also note - you'll need to add&amp;nbsp;&lt;STRONG&gt;_ARX_CUSTOM_DRAG_N_DROP_&lt;/STRONG&gt; to your pre-processor definitions if you want to use this method.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 23:17:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6493049#M9777</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-08-10T23:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6495027#M9778</link>
      <description>&lt;P&gt;I added the ARX file to my lsp startup suite, but I want it to run as though the "Disabledd" command has already been entered on startup, without having to actually enter it with each new session. If this were a standard lisp, I think I could just add a line of text in the code. I don't know how to edit ARX files to achieve the same effect.&lt;BR /&gt;&lt;BR /&gt;Are you suggesting that I write a separate lisp that just runs the "Disabledd" command on startup? I don't mind doing that, just clarifying and ensuring that's the best way.&lt;BR /&gt;&lt;BR /&gt;Edit: sorry, read up a little more on the method you mentioned and realize exactly what to do. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 18:35:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6495027#M9778</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-11T18:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6660659#M9779</link>
      <description>&lt;P&gt;Thank you very much for the sample solution.&lt;/P&gt;&lt;P&gt;It works fine in one session. I can prevent to run such operation in current drawing.&lt;/P&gt;&lt;P&gt;I'm wonder if it is possible to prevent drag-and-drop operation from one autocad session with loaded ARX to another acad without it.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Gennady&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 18:55:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6660659#M9779</guid>
      <dc:creator>gennadykhSSDP9</dc:creator>
      <dc:date>2016-11-01T18:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6660775#M9780</link>
      <description>&lt;P&gt;Hi Gennady,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My first solution (the sample ARX) vetoes DROPGEOM - meaning that you can drag, but you can't drop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My second (better) solution (not in the sample ARX) uses an&amp;nbsp;override of the drop target to prevent the drag from even starting.&lt;/P&gt;
&lt;P&gt;I imagine (not tested) that this method would prevent entities being dragged-and-dropped between ACAD instances.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 19:54:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6660775#M9780</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-11-01T19:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6662722#M9781</link>
      <description>&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;i did try your second solution. I like it better so drag-n-drop will be limited to custom components.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason drag operation never finished in dragStatus with AcDb::kDragEnd.&lt;/P&gt;&lt;P&gt;It came via OnDropEx because it creates rectangle and OnDrop returns FALSE.&lt;/P&gt;&lt;P&gt;My custom component live in DBX, both ARX and DBX projects have _ARX_CUSTOM_DRAG_N_DROP_ predefined macro.&lt;/P&gt;&lt;P&gt;Do you know if somethin is missing?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Gennady&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 15:37:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6662722#M9781</guid>
      <dc:creator>gennadykhSSDP9</dc:creator>
      <dc:date>2016-11-02T15:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6663420#M9782</link>
      <description>&lt;P&gt;Looking at my code&amp;nbsp;I may have found some similar problem , since I actually have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;if (status == AcDb::kDragStart)
{
    ...
}
else
{
    ...
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm never checking specifically for&amp;nbsp;&lt;STRONG&gt;kDragEnd&lt;/STRONG&gt; (remember you might get&amp;nbsp;&lt;STRONG&gt;kDragAbort&lt;/STRONG&gt; too).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 20:09:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6663420#M9782</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2016-11-02T20:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6663580#M9783</link>
      <description>&lt;P&gt;actually i'm tracking all three options:&lt;/P&gt;&lt;P&gt;AcDb::kDragStart: to create CMyDropTarget object;&lt;/P&gt;&lt;P&gt;AcDb::kDragEnd: to delete CMyDropTarget object;&lt;/P&gt;&lt;P&gt;AcDb::kDragAbort: to delete CMyDropTarget object;&lt;/P&gt;&lt;P&gt;Never got to End or Abort options.&lt;/P&gt;&lt;P&gt;Did make CMyDropTarget global, did CoCreateInstance() in ctor, did register in OnDragEnter. Nothing helps.&lt;/P&gt;&lt;P&gt;I see following events sequence:&lt;/P&gt;&lt;P&gt;"Component dtor"&lt;/P&gt;&lt;P&gt;"drag started"&lt;/P&gt;&lt;P&gt;Looks like starting drag-and-drop will delete component from current drawing to clipping board and after that component is not belonging to Acad session anymore. Just a guess.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 21:25:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/6663580#M9783</guid>
      <dc:creator>gennadykhSSDP9</dc:creator>
      <dc:date>2016-11-02T21:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/7553852#M9784</link>
      <description>&lt;P&gt;The arx file won't load in 2017. Would you be able to post one for 2017 version? Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 18:49:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/7553852#M9784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-17T18:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/7713269#M9785</link>
      <description>&lt;P&gt;I'd also like to load this arx in 2017. Any way to update this? I've opened it in VS but can't figure it out. So bad at coding...&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:47:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/7713269#M9785</guid>
      <dc:creator>ArchD</dc:creator>
      <dc:date>2018-01-23T15:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling DROPGEOM</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/9491503#M9786</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/542776"&gt;@Kyudos&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kia Ora from New Zealand- I hope you are well in these crazy times..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am constantly working with large drawings in Civil 3d 2020. Lag is a constant battle with large datasets and the DROPGEOM command is alive and well, providing me with ample frustration, usually only a long time after it's happened (although thankfully sometimes I see it happen and can undo right away). And it's not just me, it happens to my work mates too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have stumbled across your solution as the closest thing to fixing this, however trying to load your ARX file from this download into Civil 3D 2020 gives me this error message:&lt;/P&gt;&lt;P&gt;disabledragdrop.arx is incompatible with this version of AutoCAD.&lt;BR /&gt;AcRxDynamicLinker failed to load 'k:\autocad\autocad\lisp\disabledragdrop.arx'&lt;BR /&gt;k:\autocad\autocad\lisp\disabledragdrop.arxUnable to load DisableDragDrop.arx file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't want to be this guy, usually i'll trawl the internet until I break down what I need and managed to bungle my way through it, but not this time. I seem to be hitting wall after wall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there some way you could assist me in getting this to run in my version of AutoCAD?&amp;nbsp; It would be hugely appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 22:24:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/disabling-dropgeom/m-p/9491503#M9786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-04T22:24:25Z</dc:date>
    </item>
  </channel>
</rss>

