<?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: How do I access my LayerFiles in my Addin? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70708#M1893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: mike.robb&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why is it that I cant just use the directory string pulled, that I have to replace the %7B with { and %7D as }&amp;nbsp; to get the path to the files pushed along with the addin?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what I do...Just never understood why I have to manipulate the string path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Function GetAssemblyDirectory() As String

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Codebase As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim URI As UriBuilder
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim AssemblyDLLFilePath As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim AssemblyDirectory As String

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Codebase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; URI = New UriBuilder(Codebase)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDLLFilePath = URI.Path.ToCharArray

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = System.IO.Path.GetDirectoryName(AssemblyDLLFilePath)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = AssemblyDirectory.Replace("%7B", "{")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = AssemblyDirectory.Replace("%7D", "}")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return AssemblyDirectory

&amp;nbsp;&amp;nbsp;&amp;nbsp; End Function&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 22:43:03 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2021-12-10T22:43:03Z</dc:date>
    <item>
      <title>How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70703#M1888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: Hornbydd&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been developing my first ever ArcGIS 10 Addin. If I have understood the help correctly I can embed files into my addin, I have done this with 3 &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;LayerFiles&lt;/SPAN&gt;&lt;SPAN&gt;. See image below titled folderstructure, I have also set the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Copy to Output Directory&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Copy always&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I use the following bit of code to get a handle on the path:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Dim s As String
Dim path As String
s = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly.Location)
path = System.IO.Path.GetDirectoryName(s) &amp;amp; "\Layer Files\"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I build the project in VS2008 and then copy JUST the esriAddIn file to c:\temp.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I run the tool to try and get a handle on the LayerFile inside the esriAddIn file I get the error message as shown by the image title errormessage. Note this has a very different path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have I misunderstood what an embedded file can be? If not how do you drill down to the LayerFile as ultimately I want to get hold of the symbology store inside it with code similar to below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;s = path &amp;amp; "Polygon.lyr"
pLayerFile = New LayerFile
pLayerFile.Open(s)
pLayer2 = pLayerFile.Layer
 pGeoFeatureLayer2 = pLayer2
pGeoFeatureLayer.Renderer = pGeoFeatureLayer2.Renderer
pLayerFile.Close()&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:42:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70703#M1888</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T22:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70704#M1889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: jeffhamblin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Duncan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Add-In code actually runs from the AssemblyCache location. Everything in the zipped ".esriaddin" file is extracted there for execution. The path shown in the error dialog looks incomplete -- it doesn't have the usual GUID folder for the Add-In. I suspect it might be because you are using "GetExecutingAssembly.Location" to get the path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try this method of getting the path (from StackOverflow):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
Public Shared ReadOnly Property AssemblyDirectory() As String
&amp;nbsp; Get
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim codeBase As String = Assembly.GetExecutingAssembly().CodeBase
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim uriBuilder As New UriBuilder(codeBase)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim assemblyPath As String = Uri.UnescapeDataString(uriBuilder.Path)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Return Path.GetDirectoryName(assemblyPath)
&amp;nbsp; End Get
End Property
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the post on StackOverflow that is related:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://stackoverflow.com/questions/52797/c-how-do-i-get-the-path-of-the-assembly-the-code-is-in" rel="nofollow noopener noreferrer" target="_blank"&gt;http://stackoverflow.com/questions/52797/c-how-do-i-get-the-path-of-the-assembly-the-code-is-in&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See this forum thread for related info:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/17397-Add-In-embedded-Files-and-use-it-s-path" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/17397-Add-In-embedded-Files-and-use-it-s-path&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, have you looked in your Addin file with a zip viewer to ensure the "Layer Files" folder and files are actually there?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:43:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70704#M1889</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T22:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70705#M1890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the advice, I will test that code you suggested. I have looked inside the esriAddin file with winzip and they are in there in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But I'm having second thoughts about where one is actually "going" to get the layerfiles from. I was thinking that you give it a path name (when I finally get it working) that points inside the esriaddin file but the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000004n7000000"&gt;help file&lt;/A&gt;&lt;SPAN&gt; talks about setting the copy to output directory. So when you build the visual studio project and look in the bin directory you get the folder with layer files, the esriaddin file then a bunch of other files, but all these are also inside the esriaddin file. Sooo... if for example I take the esriaddin file only and put it in c:\temp am I developing code that is actually looking for a sub folder in c:\temp rather than &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;inside&lt;/SPAN&gt;&lt;SPAN&gt; the esriaddin file?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 17:46:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70705#M1890</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2011-04-12T17:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70706#M1891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: jeffhamblin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Duncan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just think of the "YourAddin.esriaddin" file as a distribution and installation container.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Whether you run it to install it in ArcGIS using the wizard, or just drop it into one of the "well-known" locations, the Addin does not run from the .esriaddin file. For everything in there to be used it needs to be extracted by ArcGIS on first use. Where it all ends up is in the AssemblyCache location. &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;That&lt;/SPAN&gt;&lt;SPAN&gt; is where your Addin's DLL and resources can be accessed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you are pretty close to getting this working, once you get the correct path to the Addin in the AssemblyCache.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 19:36:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70706#M1891</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-04-12T19:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70707#M1892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your code above worked and the path did include the cryptic guid number when I displayed it in a message box. I was then able to connect to the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;LayerFile&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So thanks for your help! It's a shame that the ESRI help hints at this method of packaging up other files but provides no example code, if they do it's well hidden!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 09:05:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70707#M1892</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2011-04-13T09:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70708#M1893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: mike.robb&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why is it that I cant just use the directory string pulled, that I have to replace the %7B with { and %7D as }&amp;nbsp; to get the path to the files pushed along with the addin?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what I do...Just never understood why I have to manipulate the string path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Function GetAssemblyDirectory() As String

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Codebase As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim URI As UriBuilder
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim AssemblyDLLFilePath As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim AssemblyDirectory As String

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Codebase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; URI = New UriBuilder(Codebase)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDLLFilePath = URI.Path.ToCharArray

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = System.IO.Path.GetDirectoryName(AssemblyDLLFilePath)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = AssemblyDirectory.Replace("%7B", "{")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssemblyDirectory = AssemblyDirectory.Replace("%7D", "}")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return AssemblyDirectory

&amp;nbsp;&amp;nbsp;&amp;nbsp; End Function&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:43:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70708#M1893</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-10T22:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70709#M1894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Why is it that I cant just use the directory string pulled, that I have to replace the %7B with { and %7D as }&amp;nbsp; to get the path to the files pushed along with the addin?&lt;BR /&gt;&lt;BR /&gt;This is what I do...Just never understood why I have to manipulate the string path.&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CodeBase is in URI format, so has had certain characters escaped. So it would be better to use the Uri.UnescapeDataString() method to take care of those, rather than just handling the specific ones.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 17:51:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70709#M1894</guid>
      <dc:creator>JeffreyHamblin</dc:creator>
      <dc:date>2011-04-13T17:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access my LayerFiles in my Addin?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70710#M1895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: mike.robb&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;CodeBase is in URI format, so has had certain characters escaped. So it would be better to use the Uri.UnescapeDataString() method to take care of those, rather than just handling the specific ones.&lt;BR /&gt;&lt;BR /&gt;-Jeff&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;makes sense...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Used&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.Uri.UnescapeDataString(URI.Path)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for that tid bit of info &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 20:07:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-access-my-layerfiles-in-my-addin/m-p/70710#M1895</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-04-13T20:07:01Z</dc:date>
    </item>
  </channel>
</rss>

