<?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: NETLOAD in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346630#M73376</link>
    <description>I'm using acad.lsp to load dlls.&lt;BR /&gt;
&lt;BR /&gt;
Like this:&lt;BR /&gt;
 (setvar "FILEDIA" 0)&lt;BR /&gt;
 (command "NETLOAD" "Some.dll")&lt;BR /&gt;
 (setvar "FILEDIA" 1)&lt;BR /&gt;
&lt;BR /&gt;
Also note that if you don't specify a full path name for the dll you want to &lt;BR /&gt;
load, you'll have to add its path to the autocad support file path.&lt;BR /&gt;
&lt;BR /&gt;
Greetings,&lt;BR /&gt;
Guido Rooms.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BMV1365&gt; wrote in message news:6035370@discussion.autodesk.com...&lt;BR /&gt;
IT'S VERY BORING TO RUN 'NETLOAD"COMMAND.&lt;BR /&gt;
IS THERE ANY WAY TO DO THIS FOR ONCE . FOR EXAMPLE EMBEDING DLL TO AN &lt;BR /&gt;
SPECIFIED FILE LIKE VBA ?&lt;BR /&gt;
OR IS THERE ANY COMMAND IN VBA OR VLISP TO RUN "NETLOAD" COMMAND TO DO THIS?&lt;/BMV1365&gt;</description>
    <pubDate>Sat, 20 Sep 2008 06:20:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-09-20T06:20:43Z</dc:date>
    <item>
      <title>NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346627#M73373</link>
      <description>IT'S VERY BORING TO RUN 'NETLOAD"COMMAND.&lt;BR /&gt;
IS THERE ANY WAY TO DO THIS FOR ONCE . FOR EXAMPLE EMBEDING DLL TO AN SPECIFIED FILE LIKE VBA ?&lt;BR /&gt;
OR IS THERE ANY COMMAND IN VBA OR VLISP TO RUN "NETLOAD" COMMAND TO DO THIS?</description>
      <pubDate>Fri, 19 Sep 2008 16:36:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346627#M73373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-19T16:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346628#M73374</link>
      <description>my netload command is part of a button.  which makes it a 'send command' function like in lisp, example:&lt;BR /&gt;
&lt;BR /&gt;
^C^C(command "netload" "MyCustom.dll" "MyCustomStartupCommand")</description>
      <pubDate>Fri, 19 Sep 2008 17:08:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346628#M73374</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-19T17:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346629#M73375</link>
      <description>thanks</description>
      <pubDate>Fri, 19 Sep 2008 17:12:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346629#M73375</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-19T17:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346630#M73376</link>
      <description>I'm using acad.lsp to load dlls.&lt;BR /&gt;
&lt;BR /&gt;
Like this:&lt;BR /&gt;
 (setvar "FILEDIA" 0)&lt;BR /&gt;
 (command "NETLOAD" "Some.dll")&lt;BR /&gt;
 (setvar "FILEDIA" 1)&lt;BR /&gt;
&lt;BR /&gt;
Also note that if you don't specify a full path name for the dll you want to &lt;BR /&gt;
load, you'll have to add its path to the autocad support file path.&lt;BR /&gt;
&lt;BR /&gt;
Greetings,&lt;BR /&gt;
Guido Rooms.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BMV1365&gt; wrote in message news:6035370@discussion.autodesk.com...&lt;BR /&gt;
IT'S VERY BORING TO RUN 'NETLOAD"COMMAND.&lt;BR /&gt;
IS THERE ANY WAY TO DO THIS FOR ONCE . FOR EXAMPLE EMBEDING DLL TO AN &lt;BR /&gt;
SPECIFIED FILE LIKE VBA ?&lt;BR /&gt;
OR IS THERE ANY COMMAND IN VBA OR VLISP TO RUN "NETLOAD" COMMAND TO DO THIS?&lt;/BMV1365&gt;</description>
      <pubDate>Sat, 20 Sep 2008 06:20:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346630#M73376</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-20T06:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346631#M73377</link>
      <description>Hi,&lt;BR /&gt;
I using for dubuging in visual studio script file. Call this script via &lt;BR /&gt;
"propertis/debug/command line argument"  /b "netload.scr".&lt;BR /&gt;
&lt;BR /&gt;
contens script file (include empty row)&lt;BR /&gt;
___&lt;BR /&gt;
netload&lt;BR /&gt;
"WindowCAD.dll"&lt;BR /&gt;
___&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ales Stanek</description>
      <pubDate>Tue, 23 Sep 2008 08:43:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346631#M73377</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-23T08:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: NETLOAD</title>
      <link>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346632#M73378</link>
      <description>Have a look at this too&lt;BR /&gt;
http://through-the-interface.typepad.com/through_the_interface/2008/09/loading-net-mod.html</description>
      <pubDate>Tue, 23 Sep 2008 11:12:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/netload/m-p/2346632#M73378</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-23T11:12:46Z</dc:date>
    </item>
  </channel>
</rss>

