mfahadrazzaq Posted March 6, 2013 Author Posted March 6, 2013 I am getting a save error message when trying to save amendments on existing drawings; the message is; First, an error message on the screen, stating; Error writing/closing file then, trying to close the file, the message on the Command line states: *Warning* Multiply owned object, handle "4B73" I cannot save anything, which as I am sure you agree, is something of a problem. Any ideas please? Quote
guran Posted March 6, 2013 Posted March 6, 2013 Try this: *Warning* Multiply owned object, handle "D2209" Paste the line below on your command prompt, it will highlight the trouble-maker entity: (progn (command "_ZOOM" "_O" (setq x (handent "D2209")) "")(sssetfirst nil (ssadd x))(princ)) or (entget (handent "D2209")) Quote
mfahadrazzaq Posted March 6, 2013 Author Posted March 6, 2013 Sorry this link is not work....... Quote
guran Posted March 6, 2013 Posted March 6, 2013 This is not a link. Yuo must paste this line to your command prompt: (progn (command "_ZOOM" "_O" (setq x (handent "D2209")) "")(sssetfirst nil (ssadd x))(princ)) Quote
guran Posted March 6, 2013 Posted March 6, 2013 Sorry, wrong handent. Here is the correct one (progn (command "_ZOOM" "_O" (setq x (handent "4B73")) "")(sssetfirst nil (ssadd x))(princ)) Quote
ReMark Posted March 6, 2013 Posted March 6, 2013 Have you tried doing an audit of the drawing file to find/fix errors? Quote
SLW210 Posted March 6, 2013 Posted March 6, 2013 mfahadrazzaq, First, you should think about disabling the Comm Center (aka SpyCenter). See THIS Are you saving to a network? If so try saving to the local drive. Have you tried -PURGE? Have you tried AUDIT? Paste this to your commandline (entdel(handent"4B73")) guran, Please read the CODE POSTING GUIDELINES and edit your posts to include Code Tags. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.