NETLOAD

NETLOAD

Anonymous
Not applicable
1,769 Views
5 Replies
Message 1 of 6

NETLOAD

Anonymous
Not applicable
IT'S VERY BORING TO RUN 'NETLOAD"COMMAND.
IS THERE ANY WAY TO DO THIS FOR ONCE . FOR EXAMPLE EMBEDING DLL TO AN SPECIFIED FILE LIKE VBA ?
OR IS THERE ANY COMMAND IN VBA OR VLISP TO RUN "NETLOAD" COMMAND TO DO THIS?
0 Likes
1,770 Views
5 Replies
Replies (5)
Message 2 of 6

Anonymous
Not applicable
my netload command is part of a button. which makes it a 'send command' function like in lisp, example:

^C^C(command "netload" "MyCustom.dll" "MyCustomStartupCommand")
0 Likes
Message 3 of 6

Anonymous
Not applicable
thanks
0 Likes
Message 4 of 6

Anonymous
Not applicable
I'm using acad.lsp to load dlls.

Like this:
(setvar "FILEDIA" 0)
(command "NETLOAD" "Some.dll")
(setvar "FILEDIA" 1)

Also note that if you don't specify a full path name for the dll you want to
load, you'll have to add its path to the autocad support file path.

Greetings,
Guido Rooms.


wrote in message news:6035370@discussion.autodesk.com...
IT'S VERY BORING TO RUN 'NETLOAD"COMMAND.
IS THERE ANY WAY TO DO THIS FOR ONCE . FOR EXAMPLE EMBEDING DLL TO AN
SPECIFIED FILE LIKE VBA ?
OR IS THERE ANY COMMAND IN VBA OR VLISP TO RUN "NETLOAD" COMMAND TO DO THIS?
0 Likes
Message 5 of 6

Anonymous
Not applicable
Hi,
I using for dubuging in visual studio script file. Call this script via
"propertis/debug/command line argument" /b "netload.scr".

contens script file (include empty row)
___
netload
"WindowCAD.dll"
___


Ales Stanek
0 Likes
Message 6 of 6

Anonymous
Not applicable
Have a look at this too
http://through-the-interface.typepad.com/through_the_interface/2008/09/loading-net-mod.html
0 Likes