<?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: AutoCAD Commands from vb.net 2010 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385015#M56626</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;Hi&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;It worked! thank you so much, I have another question please: How to change the layer's color after adding it? because I don't want to change the CEColor each time I change the current layer.&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;You may need to re-state the question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure that you will want to change the color of the layer, because that will affect everything that is drawn on that layer that is not explicitly by color&amp;nbsp; ... do you mean 'change the color of the entity' instead,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Mar 2012 03:28:30 GMT</pubDate>
    <dc:creator>kerry_w_brown</dc:creator>
    <dc:date>2012-03-26T03:28:30Z</dc:date>
    <item>
      <title>AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3381851#M56620</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Recently I managed to connect to AutoCAD 2012 through vb.net 2010 and send simple commands like this:&lt;/P&gt;&lt;PRE&gt;Dim acaddoc As AcadDocument = acApp.ActiveDocument

Dim pt1(2) As Double
Dim pt2(2) As Double

pt1(0) = 3
pt1(1) = 6
pt1(2) = 0

pt2(0) = 1
pt2(1) = 5
pt2(2) = 0

acaddoc.ModelSpace.AddLine(pt1, pt2)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I need to use more commands &amp;nbsp;to create a new layer, set a specific layer as active, select a layer's color, select current drawing color,use hatch, select linetype and lineweight. is there a way to perform the previous operations using a code that is similar to the one above?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 17:12:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3381851#M56620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-22T17:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3382377#M56621</link>
      <description>&lt;P&gt;Short answer, yes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to create the Hatch, you just call AddHatch the same way you called AddLine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The AcadHatch object returned from that has Layer, Linetype, Lineweight properties (among others).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You access the collection of layers with acaddoc.Database.Layers which returns an object of AcadLayers, which has an Add method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;acaddoc.GetVariable/SetVariable will get or set the value of AutoCAD system variables, such as CLAYER for the name of the current layer, or CECOLOR is the Current Entity Color.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chew that up and spit it out, then come back&amp;nbsp;if you have more questions.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 21:40:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3382377#M56621</guid>
      <dc:creator>chiefbraincloud</dc:creator>
      <dc:date>2012-03-22T21:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384597#M56622</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Sorry for being late but I've been busy the last couple of days, but I have a aquestion&lt;/P&gt;&lt;P&gt;the&amp;nbsp;&lt;SPAN&gt;acaddoc.SetVariable function takes two parameters: Name as string, Value as object&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;how to use those parameters to perform tasks such as setting a layer as active or changing the layer's color?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Mar 2012 17:09:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384597#M56622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-24T17:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384845#M56623</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried to use GetVariable func&amp;nbsp;tion like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Dim acdoc As AcadDocument = acApp.ActiveDocument
MsgBox(acaddoc.GetVariable("CECOLOR"))&lt;/PRE&gt;&lt;P&gt;And the result is a message box saying: BYLAYER&lt;/P&gt;&lt;P&gt;so I tried reversing this by trying the following:&lt;/P&gt;&lt;PRE&gt;acaddoc.SetVariable("CECOLOR", Common.AcColor.acByLayer)&lt;/PRE&gt;&lt;P&gt;the result is an exception saying: "Error setting system variable"&lt;/P&gt;&lt;P&gt;and I tried many other AutoCAD variables, the getvariable works but the setvariable doesn't. what is wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Mar 2012 15:42:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384845#M56623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-25T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384867#M56624</link>
      <description>&lt;P&gt;The acByLayer is the same as 256 and the help says that you can use 1 to 255. You can set this with a string and make things simple by using "YELLOW", "BLUE", BLACK", "BYLAYER", "BYBLOCK", etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;acaddoc.SetVariable("CECOLOR", "BYLAYER")&lt;/PRE&gt;</description>
      <pubDate>Sun, 25 Mar 2012 17:18:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384867#M56624</guid>
      <dc:creator>Mike.Wohletz</dc:creator>
      <dc:date>2012-03-25T17:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384875#M56625</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It worked! thank you so much, I have another question please: How to change the layer's color after adding it? because I don't want to change the CEColor each time I change the current layer.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Mar 2012 17:30:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3384875#M56625</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-25T17:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385015#M56626</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;Hi&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;It worked! thank you so much, I have another question please: How to change the layer's color after adding it? because I don't want to change the CEColor each time I change the current layer.&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;You may need to re-state the question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure that you will want to change the color of the layer, because that will affect everything that is drawn on that layer that is not explicitly by color&amp;nbsp; ... do you mean 'change the color of the entity' instead,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 03:28:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385015#M56626</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2012-03-26T03:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385031#M56627</link>
      <description>&lt;P&gt;No, I want to change the color of the layer itself, I need this for specific layers, not all of them.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 04:58:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385031#M56627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-26T04:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385281#M56628</link>
      <description>&lt;P&gt;He here a function :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Public Function CreationCalque(ByVal NomCalque As String, Optional ByVal CB As Integer = 256, _
                                                      Optional ByVal CR As Integer = 256, _
                                                      Optional ByVal CV As Integer = 256) As String
        Dim strReturn As String = ""
        Dim db As Database = HostApplicationServices.WorkingDatabase

        Dim LayerT As LayerTable 'coll des Def des calques
        Dim Layer As LayerTableRecord
        Dim tr As Transaction = db.TransactionManager.StartTransaction()


        Try
            LayerT = tr.GetObject(db.LayerTableId, OpenMode.ForRead)

            If LayerT.Has(NomCalque) = False Then
                Layer = New LayerTableRecord
                Layer.Name = NomCalque
                Layer.Color = Color.FromRgb(CR, CV, CB)
                'OpenMode.Write
                LayerT.UpgradeOpen()
                'ajout à la base des layers
                LayerT.Add(Layer)
                'transaction
                tr.AddNewlyCreatedDBObject(Layer, True)
            Else
                Layer = tr.GetObject(LayerT.Item(NomCalque), OpenMode.ForWrite)
                'maJ Color
                Layer.Color = Color.FromRgb(CR, CV, CB)
            End If
            strReturn = Layer.Name
        Catch ex As Exception
            MsgBox(ex.ToString, vbOKOnly, "Error CreationCalque")
        Finally
            tr.Commit()
            tr.Dispose()
        End Try

        Return strReturn
    End Function&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;This function check if the name Layer is found otherwise it create a layer with the name pass in the function.&lt;/P&gt;&lt;P&gt;You need : A name of layer + code color example :&lt;/P&gt;&lt;P&gt;if CreationCalque("NameCalque",255,0,0) &amp;lt;&amp;gt; "" then&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' calc Ok and Color applied"&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' ....&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 10:36:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385281#M56628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-26T10:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385987#M56629</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This image tells what happened&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://forums.autodesk.com/t5/image/serverpage/image-id/24359i34C29D489B58C82B/image-size/original?v=mpbl-1&amp;amp;px=-1" align="center" title="Untitled.png" alt="Untitled.png" border="0" /&gt;&lt;/P&gt;&lt;P&gt;so is there any missing imports?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:41:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385987#M56629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-26T17:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385993#M56630</link>
      <description>&lt;P&gt;Add these lines to the top of the class&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Imports Autodesk.AutoCAD.DatabaseServices&lt;BR /&gt;Imports Autodesk.AutoCAD.Colors&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and add the reference to&lt;/P&gt;&lt;P&gt;acdbmgr.dll&lt;/P&gt;&lt;P&gt;acmgd.dll&lt;/P&gt;&lt;P&gt;and set copy local to false.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:46:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385993#M56630</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2012-03-26T17:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385995#M56631</link>
      <description>&lt;P&gt;What &amp;nbsp;namespaces have you imported? Is this a standalone EXE application?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:47:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3385995#M56631</guid>
      <dc:creator>Mike.Wohletz</dc:creator>
      <dc:date>2012-03-26T17:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386003#M56632</link>
      <description>&lt;P&gt;the above code won't work for a stand alone exe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:50:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386003#M56632</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2012-03-26T17:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386035#M56633</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have the following imports:&lt;/P&gt;&lt;P&gt;Imports System&lt;BR /&gt;Imports System.Runtime.InteropServices&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes this is a standalone EXE Application&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 18:13:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386035#M56633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-26T18:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386037#M56634</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have the following imports:&lt;/P&gt;&lt;P&gt;Imports System&lt;BR /&gt;Imports System.Runtime.InteropServices&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes this is a standalone EXE application&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2012 18:14:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3386037#M56634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-26T18:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3387059#M56635</link>
      <description>&lt;P&gt;Try something like this to set the layer colors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    Private Sub WorkingWithAutoCAD()
        ' we can set the color of one layer or current by:
        acSetLayerColor(AcColor.acYellow)
        'or
        'set them all to green
        For Each oLayer As AcadLayer In ThisApplication.ActiveDocument.Layers
            acSetLayerColor(AcColor.acGreen, oLayer)
        Next
        ' or set the OB layer to red and see if it happened calling by name
        Dim Rval As Boolean = acSetLayerColorByName(AcColor.acRed, "OB")

    End Sub&lt;/PRE&gt;&lt;PRE&gt;    Private Function acSetLayerColor(ByVal oColor As AcColor, Optional ByVal oLayer As AcadLayer = Nothing) As Boolean
        Try
            If oLayer Is Nothing Then 'we will look at the current layer
                oLayer = ThisApplication.ActiveDocument.ActiveLayer
            End If
            oLayer.color = oColor
            Return True
        Catch ex As Exception
            Return False
        End Try
    End Function&lt;/PRE&gt;&lt;PRE&gt;
    Private Function acSetLayerColorByName(ByVal oColor As AcColor, ByVal oLayerName As String) As Boolean
        Try
            Dim oLayer As AcadLayer = ThisApplication.ActiveDocument.Layers.Item(oLayerName)
            oLayer.color = oColor
            Return True
        Catch ex As Exception
            Return False
        End Try
    End Function&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2012 13:04:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3387059#M56635</guid>
      <dc:creator>Mike.Wohletz</dc:creator>
      <dc:date>2012-03-27T13:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Commands from vb.net 2010</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3387609#M56636</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Your suggestions worked after I added a reference to acdbmgd.dll and acdmgd.dll and imported these namespaces:&lt;/P&gt;&lt;P&gt;Imports Autodesk.AutoCAD.DatabaseServices&lt;BR /&gt;Imports Autodesk.AutoCAD.Colors&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you all for your help.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2012 17:01:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-from-vb-net-2010/m-p/3387609#M56636</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-27T17:01:01Z</dc:date>
    </item>
  </channel>
</rss>

