<?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 modifying Config.esriaddinx - change add-in's icon in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617786#M16566</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've created an add-in using VB 2008 Express with ESRI ArcGIS wizard. Now I want to change the add-in's image / icon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; 
&amp;lt;ESRI.Configuration xmlns="http://schemas.esri.com/Desktop/AddIns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;
...
&amp;lt;Image&amp;gt;Images\logo.png&amp;lt;/Image&amp;gt;
...
&amp;lt;/ESRI.Configuration&amp;gt;
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have an image logo.png stored in both Resources and Images folder in my VB.NET project. However, this image is somehow not visible for the add-in. I've checked the add-in package (.esriAddIn zip file) after compiling the project and there is no image "logo.png" in the Images folder inside this package.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The question is: how can I include this image to my add in package?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had similar problems with icons for specific buttons in this add-in, however this was fixed when I used ArcGIS wizard for adding new items to my VB.NET project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Help would be appreciated,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Mar 2011 11:02:06 GMT</pubDate>
    <dc:creator>JanBurdziej1</dc:creator>
    <dc:date>2011-03-09T11:02:06Z</dc:date>
    <item>
      <title>modifying Config.esriaddinx - change add-in's icon</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617786#M16566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've created an add-in using VB 2008 Express with ESRI ArcGIS wizard. Now I want to change the add-in's image / icon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; 
&amp;lt;ESRI.Configuration xmlns="http://schemas.esri.com/Desktop/AddIns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;
...
&amp;lt;Image&amp;gt;Images\logo.png&amp;lt;/Image&amp;gt;
...
&amp;lt;/ESRI.Configuration&amp;gt;
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have an image logo.png stored in both Resources and Images folder in my VB.NET project. However, this image is somehow not visible for the add-in. I've checked the add-in package (.esriAddIn zip file) after compiling the project and there is no image "logo.png" in the Images folder inside this package.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The question is: how can I include this image to my add in package?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had similar problems with icons for specific buttons in this add-in, however this was fixed when I used ArcGIS wizard for adding new items to my VB.NET project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Help would be appreciated,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2011 11:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617786#M16566</guid>
      <dc:creator>JanBurdziej1</dc:creator>
      <dc:date>2011-03-09T11:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: modifying Config.esriaddinx - change add-in's icon</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617787#M16567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You need to inform the build process to include the image file in the Add-In package.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In Visual Studio's solution explorer, select your &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;logo.png&lt;/SPAN&gt;&lt;SPAN&gt; file under images. Set the Build Action property to &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;AddInContent&lt;/SPAN&gt;&lt;SPAN&gt;.&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, 09 Mar 2011 15:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617787#M16567</guid>
      <dc:creator>JeffreyHamblin</dc:creator>
      <dc:date>2011-03-09T15:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: modifying Config.esriaddinx - change add-in's icon</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617788#M16568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It works! Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 04:33:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/modifying-config-esriaddinx-change-add-in-s-icon/m-p/617788#M16568</guid>
      <dc:creator>JanBurdziej1</dc:creator>
      <dc:date>2011-03-10T04:33:57Z</dc:date>
    </item>
  </channel>
</rss>

