<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>CAD Forum discussion (EN) : incremental numbers into mapbook tiles</title>
  <link>https://www.cadforum.cz/forum_en/</link>
  <description><![CDATA[This is an XML content feed of; CAD Forum discussion (EN) : Civil 3D, Map, InfraWorks : incremental numbers into mapbook tiles]]></description>
  <pubDate>Fri, 19 Jun 2026 03:20:06 +0000</pubDate>
  <lastBuildDate>Mon, 01 Jun 2009 07:39:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum_en/RSS_post_feed.asp?TID=2047</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD Forum discussion (EN)]]></title>
   <url>https://www.cadforum.cz/forum_en/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum_en/</link>
  </image>
  <item>
   <title><![CDATA[incremental numbers into mapbook tiles : You should type &amp;#034;lotno&amp;#034;...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5718&amp;title=incremental-numbers-into-mapbook-tiles#5718</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=3">Vladimir Michl</a><br /><strong>Subject:</strong> 2047<br /><strong>Posted:</strong> 01.Jun.2009 at 07:39<br /><br />You should type "lotno" (verbatim, the command name) to start the command.<DIV>&nbsp;</DIV><DIV>If you have Express Tools installed, you can also use the TCOUNT command. Our InsertC can be used also but you should have a block with an attribute to be used as the counter label.</DIV>]]>
   </description>
   <pubDate>Mon, 01 Jun 2009 07:39:07 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5718&amp;title=incremental-numbers-into-mapbook-tiles#5718</guid>
  </item> 
  <item>
   <title><![CDATA[incremental numbers into mapbook tiles : Hi, I tried by saving the code...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5717&amp;title=incremental-numbers-into-mapbook-tiles#5717</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=53513">fbastian</a><br /><strong>Subject:</strong> 2047<br /><strong>Posted:</strong> 01.Jun.2009 at 04:57<br /><br />Hi, I tried by saving the code as a lsp file and then uploading it into the CAD file. I could see the propmt "type lotno to begin" but when i typed 2 it gave me "unknown command".<DIV>&nbsp;</DIV><DIV>I&nbsp;need to understand how to run lsp files onto the current CAD file. I must be doing something wrong.</DIV><DIV>can you help me further please?</DIV><DIV>&nbsp;</DIV><DIV>There isnt a space for attaching files here otherwise i would so you can see what i am talking about.</DIV><DIV>&nbsp;</DIV><DIV>Thanks for your help.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 01 Jun 2009 04:57:37 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5717&amp;title=incremental-numbers-into-mapbook-tiles#5717</guid>
  </item> 
  <item>
   <title><![CDATA[incremental numbers into mapbook tiles : Here is a simple lisp called LOTNO...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5705&amp;title=incremental-numbers-into-mapbook-tiles#5705</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=30236">msplcdykee69</a><br /><strong>Subject:</strong> 2047<br /><strong>Posted:</strong> 29.May.2009 at 17:32<br /><br />Here is a simple lisp called LOTNO&nbsp; Copy this lisp routine below into a text file and just make sure you have a text size you have selected as current is the size it becomes You can select the text style under your toolbar "Styles".&nbsp; This is a simple auto numbering lisp routine&nbsp; <DIV>&nbsp;</DIV><DIV>;Lotno.lsp<BR>;This is a program to insert incremented lot numbers<BR>;using current text.</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (defun lotn ( / p p1 p2 n1 scmde)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq n1 (getint "Enter starting lot number: "))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq&nbsp; p1 (getpoint "\nText location: "))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq scmde (getvar "cmdecho"))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (while p1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setvar "cmdecho" 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p2 p1)<BR>&nbsp;&nbsp;&nbsp;&nbsp; (if (= 0.0 (cdr (assoc 40 (tblsearch "style" (getvar "textstyle"))))) <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (command "text"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "J"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "MC"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p p1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p n1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (command "text"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "J"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "MC"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p p1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p n1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );if<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq n1 (+ n1 1))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq p1 (getpoint "\nText location: "))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (if (= p1 p2) (setq p1 nil))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setvar "cmdecho" scmde)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (princ)<BR>)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (defun C:LOTNO ()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (lotn)<BR>)<BR>(princ "Type LOTNO to begin.")<BR>(princ)</DIV>]]>
   </description>
   <pubDate>Fri, 29 May 2009 17:32:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5705&amp;title=incremental-numbers-into-mapbook-tiles#5705</guid>
  </item> 
  <item>
   <title><![CDATA[incremental numbers into mapbook tiles : Hello, I have been producing mapbooks...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5678&amp;title=incremental-numbers-into-mapbook-tiles#5678</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=53513">fbastian</a><br /><strong>Subject:</strong> 2047<br /><strong>Posted:</strong> 27.May.2009 at 11:23<br /><br />Hello, I have been producing mapbooks using CAD 3D 2009 for a short while. <DIV>On my key maps I show the map book in tiles. In the center of these tiles I manually insert a number as a presentaion purpose. However this is very time consuming and prone to error.</DIV><DIV>&nbsp;</DIV><DIV>I found and downloaded from your site the&nbsp;Lisp InsertC.</DIV><DIV>&nbsp;</DIV><DIV>I tried using it but, the truth is that I lack the experience in CAD to make this work.</DIV><DIV>&nbsp;</DIV><DIV>Do I have to make the tiles into blocks? If so how do I do that?<BR>As far as I can see the tiles are polyline objects.</DIV><DIV>&nbsp;</DIV><DIV>Any suggestions or help would be very much appreciated.</DIV><DIV>&nbsp;</DIV><DIV>thank you very much.</DIV><DIV>&nbsp;</DIV><DIV>Fred</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 27 May 2009 11:23:49 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=2047&amp;PID=5678&amp;title=incremental-numbers-into-mapbook-tiles#5678</guid>
  </item> 
 </channel>
</rss>