<?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: SelectOnScreen creates error in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10503388#M3208</link>
    <description>&lt;P&gt;Norman ,&lt;/P&gt;&lt;P&gt;Thank you for your comments. The title of my post is incorrect as SelectOnScreen is not creating the error, although it does create an error down the line since it did not allow the user to select anything. The line for "&lt;SPAN&gt;AppActivate ThisDrawing.Application.Caption" was added recently as I found it used in another post and gave it a try. I have removed the line and I'm still getting the same results. This code is written in AutoCAD VBA. You mentioned the code may be broken due to the update in Acad2015. That is probably the case and I would need to find another way to perform this task if it can't be fixed here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What I have found is if I select only one drawing from my OpenDoc form the SelectOnScreen function works correctly. It is when I select more than one drawing that it doesn't allow me to select objects. Even though I have activated the current drawing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've cleaned up my code to only show what is needed to get past the SelectOnScreen issue (notice I didn't say error?)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I appreciate your assistance and knowledge,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jack&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Option Explicit&lt;BR /&gt;Public colDwgSel As New Collection '''drawings selected to open&lt;BR /&gt;Public oApp As AcadApplication&lt;BR /&gt;Public sPath As String&lt;BR /&gt;Private oDoc As AcadDocument&lt;BR /&gt;Private Response&lt;/P&gt;&lt;P&gt;Public Sub Wire()&lt;/P&gt;&lt;P&gt;Set oApp = AcadApplication&lt;BR /&gt;Set oDoc = oApp.ActiveDocument&lt;/P&gt;&lt;P&gt;sPath = oDoc.Path &amp;amp; "\"&lt;BR /&gt;&lt;BR /&gt;'form to get unit type&lt;BR /&gt;Load FrmUnitType&lt;BR /&gt;FrmUnitType.show&lt;BR /&gt;&lt;BR /&gt;'form to select drawings to open&lt;BR /&gt;Load FrmOpenDoc&lt;BR /&gt;FrmOpenDoc.show&lt;BR /&gt;&lt;BR /&gt;Unload FrmUnitType&lt;BR /&gt;Unload FrmOpenDoc&lt;BR /&gt;&lt;BR /&gt;' close all open drawings&lt;BR /&gt;For Each oDoc In oApp.Documents&lt;BR /&gt;Set oDoc = oApp.Documents.Item(0)&lt;BR /&gt;oDoc.Close&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;'open all drawings selected in FrmOpenDoc&lt;BR /&gt;Dim DwgSel As Variant&lt;BR /&gt;For Each DwgSel In colDwgSel&lt;BR /&gt;oApp.Documents.Open DwgSel&lt;BR /&gt;Next&lt;BR /&gt;Set oDoc = oApp.Documents.Item(0)&lt;BR /&gt;&lt;BR /&gt;'''call module to get devices in order to be wired&lt;BR /&gt;GetDevices&lt;BR /&gt;&lt;BR /&gt;For Each oDoc In oApp.Documents&lt;BR /&gt;oDoc.Close True&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Set oDoc = Nothing&lt;BR /&gt;Set oApp = Nothing&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub GetDevices()&lt;/P&gt;&lt;P&gt;Dim drawing As AcadDocument&lt;BR /&gt;Dim sDwg As String&lt;BR /&gt;&lt;BR /&gt;For Each drawing In ThisDrawing.Application.Documents&lt;BR /&gt;drawing.Activate&lt;BR /&gt;&lt;BR /&gt;'call sub to select devices to be wired&lt;BR /&gt;GetSelections&lt;BR /&gt;&lt;BR /&gt;Next drawing&lt;BR /&gt;&lt;BR /&gt;Set drawing = Nothing&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Private Sub GetSelections()&lt;BR /&gt;Dim objDevices As AcadSelectionSet&lt;BR /&gt;Dim intCodes(0 To 0) As Integer&lt;BR /&gt;Dim varCodeValues(0 To 0) As Variant&lt;BR /&gt;intCodes(0) = 8 'set the code for layer&lt;BR /&gt;varCodeValues(0) = "DEVICE*" 'set the code value&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;ThisDrawing.SelectionSets("DEVICES").Delete&lt;BR /&gt;On Error GoTo 0&lt;BR /&gt;Set objDevices = ThisDrawing.SelectionSets.Add("DEVICES")&lt;BR /&gt;'select only objects on device* layers&lt;BR /&gt;objDevices.SelectOnScreen intCodes, varCodeValues&lt;BR /&gt;If objDevices.Count &amp;gt; 0 Then&lt;BR /&gt;MsgBox "Selected " &amp;amp; objDevices.Count&lt;BR /&gt;Else&lt;BR /&gt;MsgBox "Was not prompted to select objects", vbOKCancel&lt;BR /&gt;End If&lt;BR /&gt;Set objDevices = Nothing&lt;BR /&gt;End Sub&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jul 2021 19:37:43 GMT</pubDate>
    <dc:creator>jquade</dc:creator>
    <dc:date>2021-07-28T19:37:43Z</dc:date>
    <item>
      <title>SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10500632#M3204</link>
      <description>&lt;P&gt;The code below will prompt user to select objects if ran from this sub, but when I call it from the main program it creates an error and does not prompt to select objects (basically skips over it). The main program opens several drawings, activates one at a time and calls this sub routine. I've searched for an error similar to this one and have not found one in the forum. Any suggestions or solutions would be much appreciated. Using AutoCAD Electrical 2019 and have also tried in AutoCAD 2019.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub GetSelections()&lt;BR /&gt;Dim objDevices As AcadSelectionSet&lt;BR /&gt;Dim intCodes(0 To 0) As Integer&lt;BR /&gt;Dim varCodeValues(0 To 0) As Variant&lt;BR /&gt;intCodes(0) = 8 'set the code for layer&lt;BR /&gt;varCodeValues(0) = "DEVICE*" 'set the code value&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;ThisDrawing.SelectionSets("DEVICES").Delete&lt;BR /&gt;On Error GoTo 0&lt;BR /&gt;AppActivate ThisDrawing.Application.Caption&lt;BR /&gt;Set objDevices = ThisDrawing.SelectionSets.Add("DEVICES")&lt;BR /&gt;'select only objects on device* layers&lt;BR /&gt;objDevices.SelectOnScreen intCodes, varCodeValues&lt;BR /&gt;Set objDevices = Nothing&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Jack&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 21:13:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10500632#M3204</guid>
      <dc:creator>jquade</dc:creator>
      <dc:date>2021-07-27T21:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10500644#M3205</link>
      <description>&lt;P&gt;Do you get an error message? Have you tried debugging by setting a breakpoint and stepping through execution until you hit the error? You might share your other code that calls this sub.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at your code, creating a selection set within this sub is bad practice because of the way you use On Error. It should be handled in a separate sub. Search this forum for my AddSelectionSet sub. This way you don't run into the problem where On Error Resume Next masks any other errors. The errors still occur, you just don't know about them.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 21:24:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10500644#M3205</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2021-07-27T21:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10502713#M3206</link>
      <description>&lt;P&gt;Thanks for the reply Ed. I do not get an error message. When I step through the execution, it steps through the line for SelectOnScreen and goes to the next line. I created a new code file and added the GetSelections sub and create a new main sub to open a couple files and then call GetSelections. It is working as it should. So I have a problem in my original code, not the SelectOnScreen function. I'll dive more into each line of the original code and try to find what could be causing the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: This code was working at one time. I wrote it back around 2005, then left the company in 2007. Returned this year in April and was told it wasn't working. Debugging found the issue at SelectOnScreen. It's driving me NUTS!!! (Didn't have to drive far..)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jack&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 15:23:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10502713#M3206</guid>
      <dc:creator>jquade</dc:creator>
      <dc:date>2021-07-28T15:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10502801#M3207</link>
      <description>&lt;P&gt;While your post was titled as "...create error", yet you say you do not get error message, so what is is the "error" as you think of?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To diagnose the code, you need top provide more code with the context how this GetSelections() method is called. To me this line:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;AppActivate ThisDrawing.Application.Caption&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;suggests that your code does not run in AutoCAD VBA, but from an external application (i.e. you automate AutoCAD via AutoCAD COM API).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also, you mentioned "...opens several files...", which might be the reason of the code longer work now as it did in older version AutoCAD (pre-Acad2015), because Acad2015 had a critical change (removing FIBER) that broke quite some older code: switch active document cancels active command and may also cancel custom code execution, depending on how the code is executed. The "no error message" error sounds quite like the case of active drawing change that interrupting code execution.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Again, without seeing whole picture, it is difficult to comment further.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 15:49:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10502801#M3207</guid>
      <dc:creator>Norman_Yuan</dc:creator>
      <dc:date>2021-07-28T15:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10503388#M3208</link>
      <description>&lt;P&gt;Norman ,&lt;/P&gt;&lt;P&gt;Thank you for your comments. The title of my post is incorrect as SelectOnScreen is not creating the error, although it does create an error down the line since it did not allow the user to select anything. The line for "&lt;SPAN&gt;AppActivate ThisDrawing.Application.Caption" was added recently as I found it used in another post and gave it a try. I have removed the line and I'm still getting the same results. This code is written in AutoCAD VBA. You mentioned the code may be broken due to the update in Acad2015. That is probably the case and I would need to find another way to perform this task if it can't be fixed here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What I have found is if I select only one drawing from my OpenDoc form the SelectOnScreen function works correctly. It is when I select more than one drawing that it doesn't allow me to select objects. Even though I have activated the current drawing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've cleaned up my code to only show what is needed to get past the SelectOnScreen issue (notice I didn't say error?)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I appreciate your assistance and knowledge,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jack&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Option Explicit&lt;BR /&gt;Public colDwgSel As New Collection '''drawings selected to open&lt;BR /&gt;Public oApp As AcadApplication&lt;BR /&gt;Public sPath As String&lt;BR /&gt;Private oDoc As AcadDocument&lt;BR /&gt;Private Response&lt;/P&gt;&lt;P&gt;Public Sub Wire()&lt;/P&gt;&lt;P&gt;Set oApp = AcadApplication&lt;BR /&gt;Set oDoc = oApp.ActiveDocument&lt;/P&gt;&lt;P&gt;sPath = oDoc.Path &amp;amp; "\"&lt;BR /&gt;&lt;BR /&gt;'form to get unit type&lt;BR /&gt;Load FrmUnitType&lt;BR /&gt;FrmUnitType.show&lt;BR /&gt;&lt;BR /&gt;'form to select drawings to open&lt;BR /&gt;Load FrmOpenDoc&lt;BR /&gt;FrmOpenDoc.show&lt;BR /&gt;&lt;BR /&gt;Unload FrmUnitType&lt;BR /&gt;Unload FrmOpenDoc&lt;BR /&gt;&lt;BR /&gt;' close all open drawings&lt;BR /&gt;For Each oDoc In oApp.Documents&lt;BR /&gt;Set oDoc = oApp.Documents.Item(0)&lt;BR /&gt;oDoc.Close&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;'open all drawings selected in FrmOpenDoc&lt;BR /&gt;Dim DwgSel As Variant&lt;BR /&gt;For Each DwgSel In colDwgSel&lt;BR /&gt;oApp.Documents.Open DwgSel&lt;BR /&gt;Next&lt;BR /&gt;Set oDoc = oApp.Documents.Item(0)&lt;BR /&gt;&lt;BR /&gt;'''call module to get devices in order to be wired&lt;BR /&gt;GetDevices&lt;BR /&gt;&lt;BR /&gt;For Each oDoc In oApp.Documents&lt;BR /&gt;oDoc.Close True&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Set oDoc = Nothing&lt;BR /&gt;Set oApp = Nothing&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub GetDevices()&lt;/P&gt;&lt;P&gt;Dim drawing As AcadDocument&lt;BR /&gt;Dim sDwg As String&lt;BR /&gt;&lt;BR /&gt;For Each drawing In ThisDrawing.Application.Documents&lt;BR /&gt;drawing.Activate&lt;BR /&gt;&lt;BR /&gt;'call sub to select devices to be wired&lt;BR /&gt;GetSelections&lt;BR /&gt;&lt;BR /&gt;Next drawing&lt;BR /&gt;&lt;BR /&gt;Set drawing = Nothing&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Private Sub GetSelections()&lt;BR /&gt;Dim objDevices As AcadSelectionSet&lt;BR /&gt;Dim intCodes(0 To 0) As Integer&lt;BR /&gt;Dim varCodeValues(0 To 0) As Variant&lt;BR /&gt;intCodes(0) = 8 'set the code for layer&lt;BR /&gt;varCodeValues(0) = "DEVICE*" 'set the code value&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;ThisDrawing.SelectionSets("DEVICES").Delete&lt;BR /&gt;On Error GoTo 0&lt;BR /&gt;Set objDevices = ThisDrawing.SelectionSets.Add("DEVICES")&lt;BR /&gt;'select only objects on device* layers&lt;BR /&gt;objDevices.SelectOnScreen intCodes, varCodeValues&lt;BR /&gt;If objDevices.Count &amp;gt; 0 Then&lt;BR /&gt;MsgBox "Selected " &amp;amp; objDevices.Count&lt;BR /&gt;Else&lt;BR /&gt;MsgBox "Was not prompted to select objects", vbOKCancel&lt;BR /&gt;End If&lt;BR /&gt;Set objDevices = Nothing&lt;BR /&gt;End Sub&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 19:37:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10503388#M3208</guid>
      <dc:creator>jquade</dc:creator>
      <dc:date>2021-07-28T19:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10503699#M3209</link>
      <description>&lt;P&gt;When you post code, please use the button "&amp;lt;/&amp;gt;" above the message window, so that the code format would be preserved and easy to read.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did a much more simplified version of code sample, which open 3 files and upon each drawing being opened, user is asked to select on screen. The code works OK, but not sure how it is similar to your case:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Option Explicit

Public Sub SelectSetInDwgs()

    Dim dwgFiles(0 To 2) As String
    dwgFiles(0) = "E:\Temp\Test01.dwg"
    dwgFiles(1) = "E:\Temp\Test02.dwg"
    dwgFiles(2) = "E:\Temp\Test03.dwg"
    
    SelectEntitiesInDwgs dwgFiles
    
    '' Show the result
    Dim dwg As AcadDocument
    Dim ss As AcadSelectionSet
    
    On Error Resume Next
    For Each dwg In Application.Documents
        Set ss = dwg.SelectionSets("MySet")
        If Not ss Is Nothing Then
            MsgBox "Entities in SelectionSet: " &amp;amp; ss.Count &amp;amp; vbCrLf &amp;amp; dwg.Name
            '' Do something with the entities in the selectionset in this document
        Else
            MsgBox "No SelectionSet in this drawing: " &amp;amp; vbCrLf &amp;amp; dwg.Name
        End If
    Next

End Sub

Private Sub SelectEntitiesInDwgs(dwgFiles As Variant)

    Dim i As Integer
    Dim fileName As String
    For i = 0 To UBound(dwgFiles)
        fileName = dwgFiles(i)
        SelectEntitiesInDwg fileName
    Next
    
End Sub

Private Sub SelectEntitiesInDwg(fileName As String)

    Dim dwg As AcadDocument
    Dim ss As AcadSelectionSet
    
    Set dwg = Application.Documents.Open(fileName)
    Set ss = dwg.SelectionSets.Add("MySet")
    ss.SelectOnScreen
    
End Sub&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use array to hold file name and no selection filter for the selecting, which should not make any difference in terms of the issue you encountered.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope at least this gives you a bit hint.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 22:03:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10503699#M3209</guid>
      <dc:creator>Norman_Yuan</dc:creator>
      <dc:date>2021-07-28T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: SelectOnScreen creates error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10505775#M3210</link>
      <description>&lt;P&gt;Thank you Norman. Your new code worked for me also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jack&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 15:28:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectonscreen-creates-error/m-p/10505775#M3210</guid>
      <dc:creator>jquade</dc:creator>
      <dc:date>2021-07-29T15:28:17Z</dc:date>
    </item>
  </channel>
</rss>

