TheSwamp

CAD Forums => CAD General => Topic started by: Fabricio28 on October 01, 2014, 10:55:37 AM

Title: Autocad Warning
Post by: Fabricio28 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
Title: Re: Autocad Warning
Post by: mjfarrell 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.
Title: Re: Autocad Warning
Post by: Fabricio28 on October 01, 2014, 11:27:45 AM
Thank very much, mjfarrell!!! :)

Problem solved.