Autodesk Technology Managers Forum
Share your knowledge, ask questions, and engage with fellow CAD/BIM Managers.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Reply
Message 1 of 13
tarmbruster
323 Views, 12 Replies

Explode Command

We recently have hired a few temporary CAD drafters out of a local community college. They all have a habit to explode everything, dimensions, mtext, plines, etc. Is there a way to disable the explode command? I have already removed it from the PGP file so they have to type explode out or select it from a menu / toolbar. We are using AutoCAD 2007.
Thanks
12 REPLIES 12
Message 2 of 13
Anonymous
in reply to: tarmbruster

Type in undefine, then the command. That will disable the command. Type in
redefine to make it work again.
Rick

wrote in message news:5870068@discussion.autodesk.com...
We recently have hired a few temporary CAD drafters out of a local community
college. They all have a habit to explode everything, dimensions, mtext,
plines, etc. Is there a way to disable the explode command? I have already
removed it from the PGP file so they have to type explode out or select it
from a menu / toolbar. We are using AutoCAD 2007.
Thanks
Message 3 of 13
tarmbruster
in reply to: tarmbruster

Will this reset itself every time autocad is launched? Do I have to define this to acaddoc.lsp??
Message 4 of 13
Anonymous
in reply to: tarmbruster

Toma1379 wrote:
> We recently have hired a few temporary CAD drafters out of a local community college. They all have a habit to explode everything, dimensions, mtext, plines, etc. Is there a way to disable the explode command? I have already removed it from the PGP file so they have to type explode out or select it from a menu / toolbar. We are using AutoCAD 2007.
> Thanks


In the words of Mark Kiker...
"Don't let a management problem become a technology problem"

In other words, train these guys or get some new CAD drafters.

--
R.K. McSwain
http://rkmcswain.blogspot.com
Message 5 of 13
Anonymous
in reply to: tarmbruster

Yes to both questions.

wrote in message news:5870085@discussion.autodesk.com...
Will this reset itself every time autocad is launched? Do I have to define
this to acaddoc.lsp??
Message 6 of 13
Anonymous
in reply to: tarmbruster

Put this reactor in all there startup lisps. Edit it like you want.

(vl-load-com)
(or explodereactor
(setq explodereactor
(vlr-command-reactor
nil
'((:vlr-commandwillstart . cmdstart)
(:vlr-commandended . cmdend)
(:vlr-commandcancelled . cmdcan)
)
) ;_ end of vlr-command-reactor
) ;_ end of setq
) ;_ end of or

(defun cmdstart (react cmd /)
(setq cmd (strcase (car cmd) t))
(cond
((wcmatch cmd "*explode*")
(alert "\nI will drag you over hot coals\nif you do what I think you're
about to do")
)
)
) ;_ end of defun

(defun cmdend (react cmd /)
(setq cmd (strcase (car cmd) t))
(cond
((wcmatch cmd "*explode*")
(alert "\nIf you exploded any dimensions, mtext, plines you're gone")
)
)
) ;_ end of defun

(defun cmdcan (react cmd /)
(setq cmd (strcase (car cmd) t))
(cond
((wcmatch cmd "*explode*")
(alert "\nSmart move canceling out")
)
)
) ;_ end of defun
Message 7 of 13
Anonymous
in reply to: tarmbruster

Smack them across the head and tell them if they do it once more they
are sacked!

mj



Toma1379 wrote:
> We recently have hired a few temporary CAD drafters out of a local community college. They all have a habit to explode everything, dimensions, mtext, plines, etc. Is there a way to disable the explode command? I have already removed it from the PGP file so they have to type explode out or select it from a menu / toolbar. We are using AutoCAD 2007.
> Thanks
Message 8 of 13
Anonymous
in reply to: tarmbruster

Train these guys or get some new CAD drafters: they will never learn from
their mistakes if you don't teach.

Firing works too.

Also contact the school and consult, express your dismay at this lack on
understanding of AutoCAD basics.

AND, most importantly, ask them why they do it: you might be surprised by
the answer.

--
Dean Saadallah
http://LTisACAD.blogspot.com
Add-on products for LT
http://www.pendean.com/lt
--
Message 9 of 13
dgorsman
in reply to: tarmbruster

"This was the way we did it at our old job." is a surprisingly common response.
----------------------------------
If you are going to fly by the seat of your pants, expect friction burns.
"I don't know" is the beginning of knowledge, not the end.


Message 10 of 13
rgorman
in reply to: tarmbruster

I used the undefine method along with an Alert Box saying in effect- "if you want to explode something, check with me so I can dope-slap you"

then they ask "Then how do I 'blah, blah'..."

Then I show them, again...and again... and again...

But at least I don't get a shrapnel drawing.
Message 11 of 13
jackshield
in reply to: tarmbruster

then the status of their position at their current job should become the staus of their position of their previous job, imo
Message 12 of 13
Anonymous
in reply to: tarmbruster

Getting to the root of the problem, vs. the casual dealing of the problem
with Undefine, is how it needs to get solved IMHO.

Unless the OP is in a public library type setting and these are
transients... .

--
Dean Saadallah
http://LTisACAD.blogspot.com
Add-on products for LT
http://www.pendean.com/lt
--
Message 13 of 13
Anonymous
in reply to: tarmbruster

Exploding can be bad in Autocad. But I can't tell you how devastating it can
be in Civil 3D.

wrote in message news:5871632@discussion.autodesk.com...
I used the undefine method along with an Alert Box saying in effect- "if you
want to explode something, check with me so I can dope-slap you"

then they ask "Then how do I 'blah, blah'..."

Then I show them, again...and again... and again...

But at least I don't get a shrapnel drawing.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Administrator Productivity


Autodesk Design & Make Report