<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Convert muliple circles to autocad blocks</title>
	<atom:link href="http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/feed" rel="self" type="application/rss+xml" />
	<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40</link>
	<description>Reviews-tutorials-resources-free-cad-blocks for Autocad &#38; other Cad Software</description>
	<lastBuildDate>Sat, 20 Feb 2010 05:36:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mike</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-542</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 18 Oct 2008 20:16:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-542</guid>
		<description>The error is not an AutoCAD error - it is an html error.

After you cut-and-past the text, replace all the colon (&quot;) and semi-colon (&#039;) symbols as the one&#039;s shown are html characters.

This worked for me so should work for everyone.</description>
		<content:encoded><![CDATA[<p>The error is not an AutoCAD error &#8211; it is an html error.</p>
<p>After you cut-and-past the text, replace all the colon (&#8220;) and semi-colon (&#8216;) symbols as the one&#8217;s shown are html characters.</p>
<p>This worked for me so should work for everyone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mxp</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-473</link>
		<dc:creator>mxp</dc:creator>
		<pubDate>Sat, 04 Oct 2008 09:00:48 +0000</pubDate>
		<guid isPermaLink="false">#comment-473</guid>
		<description>don&#039;t work for me too (Autocad 2006), but I found working lisp:

(defun C:C2BLK ( / ss blk ent pt n)
(prompt &quot;\nSelect Circles to replace: &quot;)
(setq ss (ssget &#039;((0 . &quot;CIRCLE&quot;)))
blk (getstring &quot;\nName of Block: &quot;)
);;setq
(if (and ss (tblsearch &quot;block&quot; blk))
(progn
(setq n (1- (sslength ss)))
(while (&gt;= n 0)
(setq ent (ssname ss n)
pt (cdr (assoc 10 (entget ent)))
n (1- n)
);; setq
(command &quot;_.-insert&quot; blk pt &quot;&quot; &quot;&quot; &quot;&quot;)
);;while
(command &quot;_.erase&quot; ss &quot;&quot;)
);;progn
);; if
(princ)
)</description>
		<content:encoded><![CDATA[<p>don&#8217;t work for me too (Autocad 2006), but I found working lisp:</p>
<p>(defun C:C2BLK ( / ss blk ent pt n)<br />
(prompt &#8220;\nSelect Circles to replace: &#8220;)<br />
(setq ss (ssget &#8216;((0 . &#8220;CIRCLE&#8221;)))<br />
blk (getstring &#8220;\nName of Block: &#8220;)<br />
);;setq<br />
(if (and ss (tblsearch &#8220;block&#8221; blk))<br />
(progn<br />
(setq n (1- (sslength ss)))<br />
(while (&gt;= n 0)<br />
(setq ent (ssname ss n)<br />
pt (cdr (assoc 10 (entget ent)))<br />
n (1- n)<br />
);; setq<br />
(command &#8220;_.-insert&#8221; blk pt &#8220;&#8221; &#8220;&#8221; &#8220;&#8221;)<br />
);;while<br />
(command &#8220;_.erase&#8221; ss &#8220;&#8221;)<br />
);;progn<br />
);; if<br />
(princ)<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgars</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-468</link>
		<dc:creator>Edgars</dc:creator>
		<pubDate>Fri, 03 Oct 2008 07:16:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-468</guid>
		<description>I tried it in AutoCAD 2008 and recieved

Command: _appload repcir2blk.lsp successfully loaded.
Command: ; error: bad argument type: consp “CIRCLE”

Could help - I am not master in lisp.</description>
		<content:encoded><![CDATA[<p>I tried it in AutoCAD 2008 and recieved</p>
<p>Command: _appload repcir2blk.lsp successfully loaded.<br />
Command: ; error: bad argument type: consp “CIRCLE”</p>
<p>Could help &#8211; I am not master in lisp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cs-admin</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-159</link>
		<dc:creator>cs-admin</dc:creator>
		<pubDate>Mon, 18 Aug 2008 08:23:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-159</guid>
		<description>I used autocad 2008 for this lisp and it works for me..</description>
		<content:encoded><![CDATA[<p>I used autocad 2008 for this lisp and it works for me..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moin</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-154</link>
		<dc:creator>moin</dc:creator>
		<pubDate>Sun, 17 Aug 2008 18:49:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-154</guid>
		<description>I have tried this lisp for replacing circles with block but it doesn,t work in any of the autocad versions higher than 2000 t=which i have,,, can you help?</description>
		<content:encoded><![CDATA[<p>I have tried this lisp for replacing circles with block but it doesn,t work in any of the autocad versions higher than 2000 t=which i have,,, can you help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cs-admin</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-33</link>
		<dc:creator>cs-admin</dc:creator>
		<pubDate>Thu, 29 May 2008 09:53:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-33</guid>
		<description>with a little lisp modification we can do it with the same process as above.. 
i&#039;m going to post the exact routine soon.

see you around.</description>
		<content:encoded><![CDATA[<p>with a little lisp modification we can do it with the same process as above..<br />
i&#8217;m going to post the exact routine soon.</p>
<p>see you around.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://caddsoftwares.com/convert-muliple-circles-to-block-2/40/comment-page-1#comment-32</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Wed, 28 May 2008 18:54:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-32</guid>
		<description>How can I convert multiple points to blocks via lisp or vba?

Thanks - Ray</description>
		<content:encoded><![CDATA[<p>How can I convert multiple points to blocks via lisp or vba?</p>
<p>Thanks &#8211; Ray</p>
]]></content:encoded>
	</item>
</channel>
</rss>
