"DWel" wrote in message
news:4814285194038CF11DD8589C8C47D9EF@in.WebX.maYIadrTaRb...
Would it just be easier to do this through scripting?
James thinks:
Not if the VBA you received is working code. The best way to find that out
is to try to run it. To do that, you'd either load the VBA project into a
new Autocad session (if it's a DVB file), or start a new VBA project and
paste the code into it (if it's a BAS, CLS or FRM file).
Use command VBAMAN to Load an existing project or Start a new one, and then
click 'VBA Editor' to get into the IDE (editor)
Double-click on the various forms, classes, modules, or ThisDrawing listed
on the left side of the screen, in order to see the code.
It sounds like the code uses Events, which means it will run itself whenever
you run a command.
If you don't trust the code, you can copy and paste it into a message to
this NG, and people can review it to make sure it's nothing malicious.
James