<?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: LOADCTRLS =2 didn't working right in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6915148#M32484</link>
    <description>&lt;P&gt;With LOADCTRLS == 2 your dll-file have to be loaded on AutoCAD startup if DEMANDLOAD is not set to 0.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2017 11:54:33 GMT</pubDate>
    <dc:creator>Alexander.Rivilis</dc:creator>
    <dc:date>2017-03-02T11:54:33Z</dc:date>
    <item>
      <title>LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6914770#M32483</link>
      <description>&lt;P&gt;I was confused that I set the value of LOADCTRLS as 2, which means the assembly will run when AutoCAD is open. But the reality is I have to input the command. by the way the version of AutoCAD is 2016. I'm not sure if it's because the setting of LOADCTRLS has changed. Or it's caused by some other things.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody tell me how can I figure it out. Thanks anyway!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.PNG" style="width: 401px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/328401iC18D6DD12C127056/image-dimensions/401x80?v=v2" width="401" height="80" role="button" title="捕获.PNG" alt="捕获.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 08:11:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6914770#M32483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-02T08:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6915148#M32484</link>
      <description>&lt;P&gt;With LOADCTRLS == 2 your dll-file have to be loaded on AutoCAD startup if DEMANDLOAD is not set to 0.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 11:54:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6915148#M32484</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2017-03-02T11:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6917747#M32485</link>
      <description>&lt;P&gt;Is DEMANDLOAD a parameter or a setting? How can I set it to 0. Please show me with a code example. Thx.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 06:31:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6917747#M32485</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-03T06:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6917818#M32486</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2015/ENU/AutoCAD-Core/files/GUID-D83F2DEA-CB76-4B3C-99A4-88D4904DB3E5-htm.html#mtc-french" target="_blank"&gt;DEMANDLOAD&lt;/A&gt; is a system variable.&lt;/P&gt;
&lt;P&gt;You cannot set a system variable by code untill your app is not loaded.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 07:31:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6917818#M32486</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-03-03T07:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6922544#M32487</link>
      <description>&lt;P&gt;&amp;nbsp; Now I know DEMANDLOAD is a system variable. Sorry I didn't make it clear. &amp;nbsp;I was writing a plug-in with .NET. And as &amp;nbsp;far as I know, DEMANDLOAD is a variable for ObjectARX programs. I don't know whether it can be used for .NET programs. Further more, the default value of DEMANDLOAD is 3. That means "&lt;SPAN&gt;Demand-loads the source application when you open a drawing that contains custom objects or when you invoke one of the application's commands". And in the circumstance, I still need to input the demand even though LOADCTRLS was set as 2. That is to say DEMANDLOAD is not useful for .NET programs. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; So here comes the problem, based on a .NET programs, and I've set LOADCTRLS as 2, &amp;nbsp;What else should I do if I want to load a plug-in&amp;nbsp;when I open a drawing that contains custom objects?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 02:03:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6922544#M32487</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-06T02:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: LOADCTRLS =2 didn't working right</title>
      <link>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6922814#M32488</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;chguo123 a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; So here comes the problem, based on a .NET programs, and I've set LOADCTRLS as 2, &amp;nbsp;What else should I do if I want to load a plug-in&amp;nbsp;when I open a drawing that &lt;STRONG&gt;contains custom objects&lt;/STRONG&gt;?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maybe you should set &lt;A href="http://help.autodesk.com/view/ACD/2016/ENU/?guid=GUID-70D60274-57E0-4B22-8D0C-3C7F212A7CAF" target="_blank"&gt;LOADCTRLS&lt;/A&gt; at 1(1 - Load application upon detection of proxy object) or at 3 (2 | 1).&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 07:21:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/loadctrls-2-didn-t-working-right/m-p/6922814#M32488</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-03-06T07:21:39Z</dc:date>
    </item>
  </channel>
</rss>

