<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Embedded Image Resources</title>
	<atom:link href="http://www.csharp411.com/embedded-image-resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/embedded-image-resources/</link>
	<description>C# Information, Code, Tips and News</description>
	<lastBuildDate>Sat, 24 Jul 2010 01:26:51 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Linda</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-5327</link>
		<dc:creator>Linda</dc:creator>
		<pubDate>Thu, 12 Nov 2009 15:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-5327</guid>
		<description>For my C# project, I put the release .dll on another computer.  This application launches ESRI ArcMap.  Once open the user adds my application from the View --&gt;Toolbars menu.  

The problem is that the menu icons do not display.  The icons appear fine on my computer. 

From this post it looks like I need to add the code from the &quot;Load Image Resource&quot; section, but where in my code do I put it?   

Thanks for your help!</description>
		<content:encoded><![CDATA[<p>For my C# project, I put the release .dll on another computer.  This application launches ESRI ArcMap.  Once open the user adds my application from the View &#8211;&gt;Toolbars menu.  </p>
<p>The problem is that the menu icons do not display.  The icons appear fine on my computer. </p>
<p>From this post it looks like I need to add the code from the "Load Image Resource" section, but where in my code do I put it?   </p>
<p>Thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pacer</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-5287</link>
		<dc:creator>pacer</dc:creator>
		<pubDate>Thu, 24 Sep 2009 23:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-5287</guid>
		<description>you rock, man!!!</description>
		<content:encoded><![CDATA[<p>you rock, man!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: haris</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-5259</link>
		<dc:creator>haris</dc:creator>
		<pubDate>Wed, 19 Aug 2009 09:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-5259</guid>
		<description>Very useful article.</description>
		<content:encoded><![CDATA[<p>Very useful article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ed</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-4543</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Mon, 20 Apr 2009 21:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-4543</guid>
		<description>Is there a way to modify the resource in runtime?

Let&#039;s say that I have a xml file embedded, I open it from my appplication and then I modify the info. How can I update the embedded version of the xml file?</description>
		<content:encoded><![CDATA[<p>Is there a way to modify the resource in runtime?</p>
<p>Let's say that I have a xml file embedded, I open it from my appplication and then I modify the info. How can I update the embedded version of the xml file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timm</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-4203</link>
		<dc:creator>timm</dc:creator>
		<pubDate>Mon, 23 Feb 2009 17:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-4203</guid>
		<description>You cannot get a path for embedded resources, as these files are within your assembly and not stored in a separate file on disk.

I&#039;m not sure what your richtextboxLoadFile() routine does, but it won&#039;t work with embedded resources if you require a file name.

Instead, you need to modify your routine to accept a string argument that contains the file&#039;s CONTENTS.  e.g., if you were setting a RichTextBox directly, you would set the .Rtf property.</description>
		<content:encoded><![CDATA[<p>You cannot get a path for embedded resources, as these files are within your assembly and not stored in a separate file on disk.</p>
<p>I'm not sure what your richtextboxLoadFile() routine does, but it won't work with embedded resources if you require a file name.</p>
<p>Instead, you need to modify your routine to accept a string argument that contains the file's CONTENTS.  e.g., if you were setting a RichTextBox directly, you would set the .Rtf property.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jsanc</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-4201</link>
		<dc:creator>jsanc</dc:creator>
		<pubDate>Mon, 23 Feb 2009 05:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-4201</guid>
		<description>Hi, i need some help, i&#039;m integrating several .rtf&#039;s in a form, and i want to put them as embeded resources, but the matter is to call an archive, with the method richtextboxLoadFile() because it accepts a string with the path, and i don&#039;t know how to get it; i saw your example but always comes out an error of File not found (the file exists in the resources folder) it&#039;s necessary declare the assembly??</description>
		<content:encoded><![CDATA[<p>Hi, i need some help, i'm integrating several .rtf's in a form, and i want to put them as embeded resources, but the matter is to call an archive, with the method richtextboxLoadFile() because it accepts a string with the path, and i don't know how to get it; i saw your example but always comes out an error of File not found (the file exists in the resources folder) it's necessary declare the assembly??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: si</title>
		<link>http://www.csharp411.com/embedded-image-resources/comment-page-1/#comment-3</link>
		<dc:creator>si</dc:creator>
		<pubDate>Wed, 01 Aug 2007 17:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/embedded-image-resources/#comment-3</guid>
		<description>Hey, watch the hyphens &quot;-&quot; in folder names, they become underscores &quot;_&quot;. This only happens on folder names not files(go figure!)</description>
		<content:encoded><![CDATA[<p>Hey, watch the hyphens "-" in folder names, they become underscores "_". This only happens on folder names not files(go figure!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
