<?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: copy a layer from a drawing to another in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163321#M75805</link>
    <description>Here is edited version, I hope it will correct&lt;BR /&gt;
&lt;BR /&gt;
    Public Sub CopyLayerFrom(ByVal lname As String, ByVal fname As String)&lt;BR /&gt;
        Try&lt;BR /&gt;
            Dim doc As Document = Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
            Dim ed As Editor = doc.Editor&lt;BR /&gt;
            Dim thisDb As Database = HostApplicationServices.WorkingDatabase&lt;BR /&gt;
            Using docLock As DocumentLock = Application.DocumentManager.MdiActiveDocument.LockDocument&lt;BR /&gt;
                Using db As Database = New Database(False, False)&lt;BR /&gt;
                    db.ReadDwgFile(fname, System.IO.FileShare.Read, True, Nothing)&lt;BR /&gt;
                    Using tr As Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
                        Dim lt = tr.GetObject(db.LayerTableId, OpenMode.ForRead, False)&lt;BR /&gt;
                        If lt.Has(lname) Then&lt;BR /&gt;
                            Dim ltr As LayerTableRecord = tr.GetObject(lt(lname), OpenMode.ForRead)&lt;BR /&gt;
                            If Not ltr.IsErased Then&lt;BR /&gt;
                                Using thisTr As Transaction = thisDb.TransactionManager.StartTransaction&lt;BR /&gt;
                                    Dim thisLt As LayerTable = thisTr.GetObject(thisDb.LayerTableId, OpenMode.ForWrite)&lt;BR /&gt;
                                    Dim map As New IdMapping()&lt;BR /&gt;
                                    Dim objIDs As ObjectIdCollection = New ObjectIdCollection&lt;BR /&gt;
                                    objIDs.Add(ltr.ObjectId)&lt;BR /&gt;
                                    thisDb.WblockCloneObjects(objIDs, thisLt.ObjectId, map, DuplicateRecordCloning.Replace, False) 'no defer&lt;BR /&gt;
                                    thisTr.Commit()&lt;BR /&gt;
                                End Using&lt;BR /&gt;
                                tr.Commit()&lt;BR /&gt;
                            End If&lt;BR /&gt;
                        End If&lt;BR /&gt;
                    End Using&lt;BR /&gt;
                End Using&lt;BR /&gt;
            End Using&lt;BR /&gt;
        Catch ex As Autodesk.AutoCAD.Runtime.Exception&lt;BR /&gt;
            Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor&lt;BR /&gt;
            ed.WriteMessage(ControlChars.CrLf &amp;amp; "Error {0} Copy layer from other document" &amp;amp; ControlChars.CrLf, ex)&lt;BR /&gt;
            ed.WriteMessage(ex.StackTrace)&lt;BR /&gt;
        End Try&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
    <pubDate>Mon, 28 Jan 2008 05:55:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-01-28T05:55:27Z</dc:date>
    <item>
      <title>copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163317#M75801</link>
      <description>Hello, Guys.&lt;BR /&gt;
&lt;BR /&gt;
 My name is Bruno. I'm trying to copy a layer from a drawing to another, using dot net, but I'm not getting to do it. I already did it with VBA (using copybjects), and with ARX (using deepclone), but when I do using dot net, appears a error message when I open the layer properties manager: "no active transactions".&lt;BR /&gt;
&lt;BR /&gt;
Here is the code I'm using:&lt;BR /&gt;
&lt;BR /&gt;
 Private Sub copyLayerFromAnotherDrawing(ByVal layerStr As String, ByVal fromFileStr As String)&lt;BR /&gt;
        Dim LT, myLt As LayerTable&lt;BR /&gt;
        Dim tm, myTm As DBTransMan&lt;BR /&gt;
        Dim ta, myTa As Transaction&lt;BR /&gt;
        Dim dbMe, dbFrom As New Database&lt;BR /&gt;
        Dim lyr, copy As LayerTableRecord&lt;BR /&gt;
        Dim itens As SymbolTableEnumerator&lt;BR /&gt;
        Dim id As ObjectId&lt;BR /&gt;
        Dim idMap As New IdMapping()&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        dbMe = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Database&lt;BR /&gt;
        dbFrom.ReadDwgFile(fromFileStr, IO.FileShare.Read, True, "")&lt;BR /&gt;
&lt;BR /&gt;
        tm = dbFrom.TransactionManager&lt;BR /&gt;
        ta = tm.StartTransaction&lt;BR /&gt;
        LT = ta.GetObject(dbFrom.LayerTableId, OpenMode.ForRead, False)&lt;BR /&gt;
&lt;BR /&gt;
        myTm = dbMe.TransactionManager&lt;BR /&gt;
        myTa = myTm.StartTransaction&lt;BR /&gt;
        myLt = myTa.GetObject(dbMe.LayerTableId, OpenMode.ForWrite, False)&lt;BR /&gt;
&lt;BR /&gt;
        itens = LT.GetEnumerator&lt;BR /&gt;
        Do While itens.MoveNext&lt;BR /&gt;
            id = itens.Current&lt;BR /&gt;
            lyr = tm.GetObject(id, OpenMode.ForRead)&lt;BR /&gt;
            If lyr.Name.CompareTo(layerStr) = 0 Then&lt;BR /&gt;
                copy = lyr.DeepClone(myLt, idMap, False)&lt;BR /&gt;
                myLt.Add(copy)&lt;BR /&gt;
                myTa.AddNewlyCreatedDBObject(copy, True)&lt;BR /&gt;
                Exit Do&lt;BR /&gt;
            End If&lt;BR /&gt;
&lt;BR /&gt;
        Loop&lt;BR /&gt;
        myTa.Commit()&lt;BR /&gt;
        ta.Commit()&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
Thanx for de help.</description>
      <pubDate>Thu, 24 Jan 2008 12:54:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163317#M75801</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-24T12:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163318#M75802</link>
      <description>Hi Bruno&lt;BR /&gt;
Try this instead&lt;BR /&gt;
&lt;BR /&gt;
    Public Sub CopyLayerFrom(ByVal lname As String, ByVal fname As String)&lt;BR /&gt;
        Try&lt;BR /&gt;
            Dim doc As Document = Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
            Dim thisDb As Database = HostApplicationServices.WorkingDatabase&lt;BR /&gt;
            Using docLock As DocumentLock = Application.DocumentManager.MdiActiveDocument.LockDocument&lt;BR /&gt;
                Try&lt;BR /&gt;
                    Using db As Database = New Database(False, False)&lt;BR /&gt;
                        Try&lt;BR /&gt;
                            db.ReadDwgFile(fname, System.IO.FileShare.Read, True, Nothing)&lt;BR /&gt;
                            Using tr As Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
                                Try&lt;BR /&gt;
                                    Dim lt = tr.GetObject(db.LayerTableId, OpenMode.ForRead, False)&lt;BR /&gt;
                                    Dim ltr As LayerTableRecord = tr.GetObject(lt(lname), OpenMode.ForRead)&lt;BR /&gt;
                                    Using thisTr As Transaction = thisDb.TransactionManager.StartTransaction&lt;BR /&gt;
                                        Dim thisLt As LayerTable = thisTr.GetObject(thisDb.LayerTableId, OpenMode.ForWrite)&lt;BR /&gt;
                                        Dim map As New IdMapping()&lt;BR /&gt;
                                        Dim objIDs As ObjectIdCollection = New ObjectIdCollection&lt;BR /&gt;
                                        objIDs.Add(ltr.ObjectId)&lt;BR /&gt;
                                        thisDb.WblockCloneObjects(objIDs, thisLt.ObjectId, map, DuplicateRecordCloning.Replace, False) 'no defer&lt;BR /&gt;
                                        thisTr.Commit()&lt;BR /&gt;
                                    End Using&lt;BR /&gt;
                                    tr.Commit()&lt;BR /&gt;
                                Finally&lt;BR /&gt;
                                    CType(tr, IDisposable).Dispose()&lt;BR /&gt;
                                End Try&lt;BR /&gt;
                            End Using&lt;BR /&gt;
                        Finally&lt;BR /&gt;
                            CType(db, IDisposable).Dispose()&lt;BR /&gt;
                        End Try&lt;BR /&gt;
                    End Using&lt;BR /&gt;
                Finally&lt;BR /&gt;
                    CType(docLock, IDisposable).Dispose()&lt;BR /&gt;
                End Try&lt;BR /&gt;
            End Using&lt;BR /&gt;
        Catch ex As Autodesk.AutoCAD.Runtime.Exception&lt;BR /&gt;
            Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor&lt;BR /&gt;
            ed.WriteMessage(ControlChars.CrLf &amp;amp; "Error {0} Copy layer from other document" &amp;amp; ControlChars.CrLf, ex)&lt;BR /&gt;
            ed.WriteMessage(ex.StackTrace)&lt;BR /&gt;
        End Try&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Sun, 27 Jan 2008 18:22:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163318#M75802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-27T18:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163319#M75803</link>
      <description>Fatty - At the risk of discouraging you from posting code, I am going to say this anways, because I think others that come here to get help and learn to code using the .NET API, are entitled to know it.&lt;BR /&gt;
&lt;BR /&gt;
I mentioned this to you in the past, but you chosen to ignore it for whatever reason, and as a result, you are posting code that does not serve as a good example for anyone. &lt;BR /&gt;
&lt;BR /&gt;
So mainly for the benefit of others, here it goes yet once again:&lt;BR /&gt;
&lt;BR /&gt;
You do not call Dispose() on objects that are under control of 'Using', because that is what 'Using' is for, to begin with. 'Using' automatically calls Dispose() for you. &lt;BR /&gt;
&lt;BR /&gt;
And so, this:&lt;BR /&gt;
&lt;BR /&gt;
      Using obj As MyDisposable = New MyDisposable()&lt;BR /&gt;
         obj.DoSomething()  ' use 'obj' here&lt;BR /&gt;
      End Using&lt;BR /&gt;
&lt;BR /&gt;
is exactly the same as this:&lt;BR /&gt;
&lt;BR /&gt;
     Dim obj As MyDisposable = New MyDisposable()&lt;BR /&gt;
     Try&lt;BR /&gt;
         obj.DoSomething()  ' use 'obj' here&lt;BR /&gt;
     Finally&lt;BR /&gt;
         obj.Dispose()&lt;BR /&gt;
     End Try&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;FATTY&gt; wrote in message news:5831311@discussion.autodesk.com...&lt;BR /&gt;
Hi Bruno&lt;BR /&gt;
Try this instead&lt;BR /&gt;
&lt;BR /&gt;
    Public Sub CopyLayerFrom(ByVal lname As String, ByVal fname As String)&lt;BR /&gt;
        Try&lt;BR /&gt;
            Dim doc As Document = Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
            Dim thisDb As Database = HostApplicationServices.WorkingDatabase&lt;BR /&gt;
            Using docLock As DocumentLock = Application.DocumentManager.MdiActiveDocument.LockDocument&lt;BR /&gt;
                Try&lt;BR /&gt;
                    Using db As Database = New Database(False, False)&lt;BR /&gt;
                        Try&lt;BR /&gt;
                            db.ReadDwgFile(fname, System.IO.FileShare.Read, True, Nothing)&lt;BR /&gt;
                            Using tr As Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
                                Try&lt;BR /&gt;
                                    Dim lt = tr.GetObject(db.LayerTableId, OpenMode.ForRead, False)&lt;BR /&gt;
                                    Dim ltr As LayerTableRecord = tr.GetObject(lt(lname), OpenMode.ForRead)&lt;BR /&gt;
                                    Using thisTr As Transaction = thisDb.TransactionManager.StartTransaction&lt;BR /&gt;
                                        Dim thisLt As LayerTable = thisTr.GetObject(thisDb.LayerTableId, OpenMode.ForWrite)&lt;BR /&gt;
                                        Dim map As New IdMapping()&lt;BR /&gt;
                                        Dim objIDs As ObjectIdCollection = New ObjectIdCollection&lt;BR /&gt;
                                        objIDs.Add(ltr.ObjectId)&lt;BR /&gt;
                                        thisDb.WblockCloneObjects(objIDs, thisLt.ObjectId, map, DuplicateRecordCloning.Replace, False) 'no defer&lt;BR /&gt;
                                        thisTr.Commit()&lt;BR /&gt;
                                    End Using&lt;BR /&gt;
                                    tr.Commit()&lt;BR /&gt;
                                Finally&lt;BR /&gt;
                                    CType(tr, IDisposable).Dispose()&lt;BR /&gt;
                                End Try&lt;BR /&gt;
                            End Using&lt;BR /&gt;
                        Finally&lt;BR /&gt;
                            CType(db, IDisposable).Dispose()&lt;BR /&gt;
                        End Try&lt;BR /&gt;
                    End Using&lt;BR /&gt;
                Finally&lt;BR /&gt;
                    CType(docLock, IDisposable).Dispose()&lt;BR /&gt;
                End Try&lt;BR /&gt;
            End Using&lt;BR /&gt;
        Catch ex As Autodesk.AutoCAD.Runtime.Exception&lt;BR /&gt;
            Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor&lt;BR /&gt;
            ed.WriteMessage(ControlChars.CrLf &amp;amp; "Error {0} Copy layer from other document" &amp;amp; ControlChars.CrLf, ex)&lt;BR /&gt;
            ed.WriteMessage(ex.StackTrace)&lt;BR /&gt;
        End Try&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
~'J'~&lt;/FATTY&gt;</description>
      <pubDate>Mon, 28 Jan 2008 00:02:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163319#M75803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T00:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163320#M75804</link>
      <description>Sorry, Tony&lt;BR /&gt;
You are right completely, as always&lt;BR /&gt;
I have been in a hurry when I have writing&lt;BR /&gt;
this code&lt;BR /&gt;
Thanks again for the lesson about 'Using'&lt;BR /&gt;
&lt;BR /&gt;
With deep regards,&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 28 Jan 2008 05:42:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163320#M75804</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T05:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163321#M75805</link>
      <description>Here is edited version, I hope it will correct&lt;BR /&gt;
&lt;BR /&gt;
    Public Sub CopyLayerFrom(ByVal lname As String, ByVal fname As String)&lt;BR /&gt;
        Try&lt;BR /&gt;
            Dim doc As Document = Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
            Dim ed As Editor = doc.Editor&lt;BR /&gt;
            Dim thisDb As Database = HostApplicationServices.WorkingDatabase&lt;BR /&gt;
            Using docLock As DocumentLock = Application.DocumentManager.MdiActiveDocument.LockDocument&lt;BR /&gt;
                Using db As Database = New Database(False, False)&lt;BR /&gt;
                    db.ReadDwgFile(fname, System.IO.FileShare.Read, True, Nothing)&lt;BR /&gt;
                    Using tr As Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
                        Dim lt = tr.GetObject(db.LayerTableId, OpenMode.ForRead, False)&lt;BR /&gt;
                        If lt.Has(lname) Then&lt;BR /&gt;
                            Dim ltr As LayerTableRecord = tr.GetObject(lt(lname), OpenMode.ForRead)&lt;BR /&gt;
                            If Not ltr.IsErased Then&lt;BR /&gt;
                                Using thisTr As Transaction = thisDb.TransactionManager.StartTransaction&lt;BR /&gt;
                                    Dim thisLt As LayerTable = thisTr.GetObject(thisDb.LayerTableId, OpenMode.ForWrite)&lt;BR /&gt;
                                    Dim map As New IdMapping()&lt;BR /&gt;
                                    Dim objIDs As ObjectIdCollection = New ObjectIdCollection&lt;BR /&gt;
                                    objIDs.Add(ltr.ObjectId)&lt;BR /&gt;
                                    thisDb.WblockCloneObjects(objIDs, thisLt.ObjectId, map, DuplicateRecordCloning.Replace, False) 'no defer&lt;BR /&gt;
                                    thisTr.Commit()&lt;BR /&gt;
                                End Using&lt;BR /&gt;
                                tr.Commit()&lt;BR /&gt;
                            End If&lt;BR /&gt;
                        End If&lt;BR /&gt;
                    End Using&lt;BR /&gt;
                End Using&lt;BR /&gt;
            End Using&lt;BR /&gt;
        Catch ex As Autodesk.AutoCAD.Runtime.Exception&lt;BR /&gt;
            Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor&lt;BR /&gt;
            ed.WriteMessage(ControlChars.CrLf &amp;amp; "Error {0} Copy layer from other document" &amp;amp; ControlChars.CrLf, ex)&lt;BR /&gt;
            ed.WriteMessage(ex.StackTrace)&lt;BR /&gt;
        End Try&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 28 Jan 2008 05:55:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163321#M75805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T05:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163322#M75806</link>
      <description>Hello, Fatty. Thanx for the answer.&lt;BR /&gt;
&lt;BR /&gt;
I tryied this before, and got the following error: "filler error", when I used WblockCloneObjects method.</description>
      <pubDate>Mon, 28 Jan 2008 10:59:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163322#M75806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T10:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163323#M75807</link>
      <description>Hi Bruno,&lt;BR /&gt;
I don't know why this not working for you&lt;BR /&gt;
This worked for me 10 times from 10 with several&lt;BR /&gt;
drawings and layers&lt;BR /&gt;
A2008/VS2005&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 28 Jan 2008 11:58:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163323#M75807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T11:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163324#M75808</link>
      <description>I Tryied again and worked this time. Your code isn't identical to the code a wrote before. I don't know what I was doing wrong.  I've just copyied your code and worked.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanx, Fatty. I was almost givin up. &lt;BR /&gt;
&lt;BR /&gt;
Bruno Neves Pires Silva</description>
      <pubDate>Mon, 28 Jan 2008 12:34:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163324#M75808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T12:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: copy a layer from a drawing to another</title>
      <link>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163325#M75809</link>
      <description>Hi Bruno&lt;BR /&gt;
Glad if this worked now&lt;BR /&gt;
Happy computing &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 28 Jan 2008 13:56:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/copy-a-layer-from-a-drawing-to-another/m-p/2163325#M75809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T13:56:29Z</dc:date>
    </item>
  </channel>
</rss>

