<?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 Re: How could I check all the blocks in the current drawing? in Civil 3D Forum</title>
    <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10680967#M180471</link>
    <description>&lt;P&gt;To run the lisp simply copy the whole source code to the command line and press enter.&lt;/P&gt;
&lt;P&gt;Then type GO &amp;lt;Enter&amp;gt;&lt;/P&gt;
&lt;P&gt;But without a lisp macro use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: &lt;STRONG&gt;-BLOCK&lt;/STRONG&gt;&amp;lt;Enter&amp;gt;?&amp;lt;Enter&amp;gt;*&amp;lt;Enter&amp;gt;&lt;/P&gt;
&lt;P&gt;(Don't miss the minus sign at the beginning) and you'll get the same result - a list of blocknames.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Oct 2021 17:03:06 GMT</pubDate>
    <dc:creator>Udo_Huebner</dc:creator>
    <dc:date>2021-10-11T17:03:06Z</dc:date>
    <item>
      <title>How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7108945#M180467</link>
      <description>&lt;P&gt;I want to check them all. Are there any list of blocks&amp;nbsp;within current drawing?&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 14:45:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7108945#M180467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-25T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7108999#M180468</link>
      <description>&lt;P&gt;There are a few ways to get that information:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Use the Insert command. All blocks in the current drawing will be listed in the pulldown.&lt;/P&gt;
&lt;P&gt;2. Use the BEdit (block edit) command. All blocks in the current drawing will be listed in the selection box.&lt;/P&gt;
&lt;P&gt;3. View the blocks collection of the open drawing using DesignCenter. Use ADCENTER or DC command.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 15:07:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7108999#M180468</guid>
      <dc:creator>tcorey</dc:creator>
      <dc:date>2017-05-25T15:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7109025#M180469</link>
      <description>&lt;P&gt;or you can use this bit of LISP code to make a list that can be copied from the AutoCAD text window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:go (/ bl blname)
  (setq bl (tblnext "BLOCK" t))
  (while (and bl)
    (setq blname (cdr (assoc 2 bl)))
    (prompt (strcat "\n" blname))
    (setq bl (tblnext "BLOCK"))
    )
  (PRINC)
  )&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 May 2017 15:17:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/7109025#M180469</guid>
      <dc:creator>tcorey</dc:creator>
      <dc:date>2017-05-25T15:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10680942#M180470</link>
      <description>&lt;P&gt;How do I run this lisp?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 16:52:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10680942#M180470</guid>
      <dc:creator>M!chelle</dc:creator>
      <dc:date>2021-10-11T16:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10680967#M180471</link>
      <description>&lt;P&gt;To run the lisp simply copy the whole source code to the command line and press enter.&lt;/P&gt;
&lt;P&gt;Then type GO &amp;lt;Enter&amp;gt;&lt;/P&gt;
&lt;P&gt;But without a lisp macro use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: &lt;STRONG&gt;-BLOCK&lt;/STRONG&gt;&amp;lt;Enter&amp;gt;?&amp;lt;Enter&amp;gt;*&amp;lt;Enter&amp;gt;&lt;/P&gt;
&lt;P&gt;(Don't miss the minus sign at the beginning) and you'll get the same result - a list of blocknames.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 17:03:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10680967#M180471</guid>
      <dc:creator>Udo_Huebner</dc:creator>
      <dc:date>2021-10-11T17:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10681142#M180472</link>
      <description>&lt;P&gt;Got it, thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 18:35:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/10681142#M180472</guid>
      <dc:creator>M!chelle</dc:creator>
      <dc:date>2021-10-11T18:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: How could I check all the blocks in the current drawing?</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/13177783#M180473</link>
      <description>&lt;P&gt;Hi Michell,&lt;/P&gt;&lt;P&gt;another to keep it saved with your cad program is to copy the lisp code in a text editor like notepad,&lt;/P&gt;&lt;P&gt;then from go to File---Save As and then from their name this file "yourfilename.lsp" whatever name you use, put the .lsp at the end.&lt;/P&gt;&lt;P&gt;then go to Autocad command line and type "appload"&amp;nbsp;&lt;/P&gt;&lt;P&gt;A window will open, here select the saved lsp file and press load and , in Auto-cad command prompt it will show&amp;nbsp; message "Loaded successful"&lt;/P&gt;&lt;P&gt;Now, go to command line and type the command&amp;nbsp; go as in the program you can see " its written defun c:go (/ bl blname&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here in program whatever you will write after the C: as here it is go, you can write any command word which you remember, for example, "blocklistcreator""&lt;/P&gt;&lt;P&gt;It will run the loaded lsp program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 15:40:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/how-could-i-check-all-the-blocks-in-the-current-drawing/m-p/13177783#M180473</guid>
      <dc:creator>thenewton</dc:creator>
      <dc:date>2024-11-27T15:40:54Z</dc:date>
    </item>
  </channel>
</rss>

