Author Topic: Autocad Warning  (Read 1949 times)

0 Members and 1 Guest are viewing this topic.

Fabricio28

  • Swamp Rat
  • Posts: 666
Autocad Warning
« on: October 01, 2014, 10:55:37 AM »
Hi all,

After saving shows that alert.
Code: [Select]
Command: _qsave
 *Warning* Multiply owned object, handle "A121"

 *Warning* Multiply owned object, handle "A124"

 *Warning* Multiply owned object, handle "A127"

What does it means?
How can I solve it?

Thank you

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Autocad Warning
« Reply #1 on: October 01, 2014, 11:14:56 AM »
you have cows....

MOO's


MOO's


MOO's

to kill those Cows...


Solution

This error message generally means that multiple operations are trying to access the same objects at the same time. This handle ID is specified in the "Multiply Owned Objects" message. Please try following LISP routine to remove these objects:

• Type in command line:
o (entdel(handent "handleID"))  - to remove that object

• For example: if the object is "48A10" – then type in command line:
o (entdel(handent "48A10"))

• Repeat the same procedure for all other multiple objects

• Type AUDIT and choose to fix all errors

Warning: Please use caution when implementing this solution. The AutoLISP expression that follows simply deletes the object; it does not ask for confirmation, and it does not tell you what type of object you are deleting. For example, the object you are deleting could be an assembly constraint. Back up the file before executing the this code and saving the file.

After deleting the object handle you can use AUDIT to check for any other potential problems with the drawing. No errors were found.
Be your Best


Michael Farrell
http://primeservicesglobal.com/

Fabricio28

  • Swamp Rat
  • Posts: 666
Re: Autocad Warning
« Reply #2 on: October 01, 2014, 11:27:45 AM »
Thank very much, mjfarrell!!! :)

Problem solved.