<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic how to get rid off SHX warnings in drawings in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352971#M3170</link>
    <description>&lt;P&gt;I have some drawings who permanent say SHX not found.&lt;/P&gt;&lt;P&gt;I know its a (line) style, not been found, but how can i remove the shx missing objects&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Mar 2025 06:26:57 GMT</pubDate>
    <dc:creator>rcaspersPUZBW</dc:creator>
    <dc:date>2025-03-05T06:26:57Z</dc:date>
    <item>
      <title>how to get rid off SHX warnings in drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352971#M3170</link>
      <description>&lt;P&gt;I have some drawings who permanent say SHX not found.&lt;/P&gt;&lt;P&gt;I know its a (line) style, not been found, but how can i remove the shx missing objects&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 06:26:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352971#M3170</guid>
      <dc:creator>rcaspersPUZBW</dc:creator>
      <dc:date>2025-03-05T06:26:57Z</dc:date>
    </item>
    <item>
      <title>Betreff: how to get rid off SHX warnings in drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352991#M3171</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add the shx to your system&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Change the object or layer linetype&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;not the best choice, disable the message (it's offered, or?)&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 06:41:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352991#M3171</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-03-05T06:41:00Z</dc:date>
    </item>
    <item>
      <title>Betreff: how to get rid off SHX warnings in drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352996#M3172</link>
      <description>&lt;P&gt;HI sebastian, thank you for your comment&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignoring the messages is not the choice i wanna make. there's no tool or command to erase the object containing the SHX ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings, Ronald&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 06:43:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13352996#M3172</guid>
      <dc:creator>rcaspersPUZBW</dc:creator>
      <dc:date>2025-03-05T06:43:58Z</dc:date>
    </item>
    <item>
      <title>Betreff: how to get rid off SHX warnings in drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13353105#M3173</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my opinion, that would be the most senseless approach,&lt;BR /&gt;why delete circles, lines and blocks?&lt;BR /&gt;That's why I suggested better alternatives,&lt;BR /&gt;although deactivation is certainly not the best.&lt;/P&gt;&lt;P&gt;Here, to find the linetypes in question.&lt;BR /&gt;Please reopen your file, load the code, run LTLIST,&lt;BR /&gt;press [F2] right click - copy protocoll.&lt;BR /&gt;Share [ctrl]+[v] in your reply&lt;/P&gt;&lt;P&gt;QSELECT or FILTER or STANDARDS will help to change ltypes.&lt;BR /&gt;In AutoCADs PURGE dialog, switch to non-purgable items,&lt;BR /&gt;you can see where a linetype is used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:LTList (/ LT STYLE)
  (setq LT (tblnext "LTYPE" T))
  (while LT
    (terpri)
    (foreach ep (entget(tblobjname "LTYPE" (cdr(assoc 2 LT))))
      (cond
        ((= 2 (car ep))
         (terpri)(princ (cdr ep)))
        ((= 340 (car ep))
         (setq style (entget(cdr ep)))
         (princ (strcat "\n --&amp;gt;" (if (= "" (cdr(assoc 2 style))) "(unnamed)" (cdr(assoc 2 style))) "/" (cdr(assoc 3 style))))
         (if (and
               (not(wcmatch (strcase(cdr(assoc 3 style))) "*.TTF"))
               (not(findfile(strcat (cdr(assoc 3 style)) (if (wcmatch (strcase(cdr(assoc 3 style))) "*.SHX") "" ".shx"))))
             )
             (princ " (missing!!!)")
         ))
      )
    )
    (setq LT (tblnext "LTYPE"))
  )
 (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 08:07:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13353105#M3173</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-03-05T08:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to get rid off SHX warnings in drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13353930#M3174</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10797983"&gt;@rcaspersPUZBW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I have some drawings who permanent say SHX not found.&lt;/P&gt;&lt;P&gt;I know its a (line) style, not been found, but how can i remove the shx missing objects&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You need to ask for those SHX 'shape' from the files creator for them. Sorry, there is no other miracle fix that is 100% foolproof. You could risk hunting for them on the WEB, or actually list them for others to try and help by sharing, but you chose to not go that far yet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not liking the truthful replies is totally fine, but it does not change the facts sadly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you like to proceed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 14:29:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-get-rid-off-shx-warnings-in-drawings/m-p/13353930#M3174</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2025-03-05T14:29:00Z</dc:date>
    </item>
  </channel>
</rss>

