<?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: Numbering in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407106#M108979</link>
    <description>&lt;P&gt;It's&amp;nbsp; part of text&amp;nbsp; am attaching the drawing if u can hlp pls&lt;/P&gt;</description>
    <pubDate>Sun, 29 Mar 2020 06:37:11 GMT</pubDate>
    <dc:creator>yogeshnairvarkala</dc:creator>
    <dc:date>2020-03-29T06:37:11Z</dc:date>
    <item>
      <title>Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407075#M108977</link>
      <description>&lt;P&gt;Hi buddies,&lt;/P&gt;&lt;P&gt;Need one hlp...I want to add "P=" infront of every numbers ..Is there any easy with rather than editing one by one??&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="P adding.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/746881i39D96B922E63C1F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="P adding.JPG" alt="P adding.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 04:58:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407075#M108977</guid>
      <dc:creator>yogeshnairvarkala</dc:creator>
      <dc:date>2020-03-29T04:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407100#M108978</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;&amp;gt;&amp;gt; I want to add "P=" infront of every numbers&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Are these numbers part of an attribute inside a block or text or mtext objects or part of application objects?&lt;/P&gt;
&lt;P&gt;Search and replace does not work, but when we know what you have (or you upload a dwg-file) it could help to get valid suggestions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 06:31:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407100#M108978</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-29T06:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407106#M108979</link>
      <description>&lt;P&gt;It's&amp;nbsp; part of text&amp;nbsp; am attaching the drawing if u can hlp pls&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 06:37:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407106#M108979</guid>
      <dc:creator>yogeshnairvarkala</dc:creator>
      <dc:date>2020-03-29T06:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407131#M108980</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you don't have AutoCAD VBA-Enabler installed then please download and install it from &lt;A href="https://knowledge.autodesk.com/support/autocad/downloads/caas/downloads/content/download-the-microsoft-vba-module-for-autocad.html" target="_blank" rel="noopener"&gt;&amp;gt;&amp;gt;&amp;gt;here&amp;lt;&amp;lt;&amp;lt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Load the attached DVB file, then start command _VBARUN and select "...addTextPrefix" in the list ==&amp;gt; Run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the code inside the DVB (no error handling)&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Public Sub addTextPrefix()
   Const newPrefix = "P="
   Dim tLayName As String: tLayName = "number"
   Dim tEnt As AcadEntity
   Dim tTxt As AcadText
   
   For Each tEnt In ThisDrawing.ModelSpace
      If TypeOf tEnt Is AcadText Then
         Set tTxt = tEnt
         If Not (Left(tTxt.TextString, Len(newPrefix)) = newPrefix) Then
            tTxt.TextString = newPrefix &amp;amp; tTxt.TextString
         End If
      End If
   Next
End Sub&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 06:57:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407131#M108980</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-29T06:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407149#M108981</link>
      <description>&lt;P&gt;vowwww .it wrks like a charm tks alot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 07:18:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407149#M108981</guid>
      <dc:creator>yogeshnairvarkala</dc:creator>
      <dc:date>2020-03-29T07:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407151#M108982</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you for your feedback!&lt;/P&gt;
&lt;P&gt;Just saw that my code does not filter to only text objects on a specific layer. Let me know if you need that change build in!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 07:21:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/numbering/m-p/9407151#M108982</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-29T07:21:25Z</dc:date>
    </item>
  </channel>
</rss>

