<?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 for Ioan Lazarciuc&#039;s Weblog</title>
	<atom:link href="http://www.lazarciuc.ro/ioan/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lazarciuc.ro/ioan</link>
	<description>I program, therefore I exist.</description>
	<lastBuildDate>Sun, 08 Jan 2012 23:00:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Update for Silverlight Sidebar Gadget Project Template by cretz</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/comment-page-1/#comment-300</link>
		<dc:creator>cretz</dc:creator>
		<pubDate>Sun, 08 Jan 2012 23:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/#comment-300</guid>
		<description>What do you mean by &quot;I can’t seem to make a call to any functions when I use the template&quot;? Are you getting an exception? Have you tried debugging the code?</description>
		<content:encoded><![CDATA[<p>What do you mean by &#8220;I can’t seem to make a call to any functions when I use the template&#8221;? Are you getting an exception? Have you tried debugging the code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update for Silverlight Sidebar Gadget Project Template by Scott</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/comment-page-1/#comment-299</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Sat, 07 Jan 2012 02:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/#comment-299</guid>
		<description>Hey, I&#039;ve started messing about with the template this week, I can&#039;t seem to make a call to any functions when I use the template, is there an example template floating somewhere that done &quot;Something&quot; that I could base my own gadgets on the?

Cheers

Scott</description>
		<content:encoded><![CDATA[<p>Hey, I&#8217;ve started messing about with the template this week, I can&#8217;t seem to make a call to any functions when I use the template, is there an example template floating somewhere that done &#8220;Something&#8221; that I could base my own gadgets on the?</p>
<p>Cheers</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Parameters in Multi-Project Templates by Mark Schall</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/25/custom-parameters-in-multi-project-templates/comment-page-1/#comment-282</link>
		<dc:creator>Mark Schall</dc:creator>
		<pubDate>Tue, 19 Jul 2011 15:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/25/custom-parameters-in-multi-project-templates/#comment-282</guid>
		<description>Thanks for the post this definitely helped me.  I wanted a multiple project with one wizard and so instead of the way you suggest I decided to:

// IWizard Class

private static Dictionary Replacements = null;

      public void RunStarted(object automationObject,
                              Dictionary replacementsDictionary,
                              WizardRunKind runKind,
                              object[] customParams)
      {
         if ( _replacementDictionary != null )
         {
            foreach (var keyValuePair in _replacementDictionary)
            {
               replacementsDictionary[keyValuePair.Key] = keyValuePair.Value;
            }
            return;
         }

         // show dialog and get results
   }

I&#039;d say your way is a more flexible framework, but my two project templates depended on way too many same variables that I just decided to do it this way.

Unfortunately you do have to watch out though because some of the project specific variables like $guid#$ get copied over too, but I didnt have a problem with since it was only 2 projects in the solution

Thanks again for awesome post</description>
		<content:encoded><![CDATA[<p>Thanks for the post this definitely helped me.  I wanted a multiple project with one wizard and so instead of the way you suggest I decided to:</p>
<p>// IWizard Class</p>
<p>private static Dictionary Replacements = null;</p>
<p>      public void RunStarted(object automationObject,<br />
                              Dictionary replacementsDictionary,<br />
                              WizardRunKind runKind,<br />
                              object[] customParams)<br />
      {<br />
         if ( _replacementDictionary != null )<br />
         {<br />
            foreach (var keyValuePair in _replacementDictionary)<br />
            {<br />
               replacementsDictionary[keyValuePair.Key] = keyValuePair.Value;<br />
            }<br />
            return;<br />
         }</p>
<p>         // show dialog and get results<br />
   }</p>
<p>I&#8217;d say your way is a more flexible framework, but my two project templates depended on way too many same variables that I just decided to do it this way.</p>
<p>Unfortunately you do have to watch out though because some of the project specific variables like $guid#$ get copied over too, but I didnt have a problem with since it was only 2 projects in the solution</p>
<p>Thanks again for awesome post</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update for Silverlight Sidebar Gadget Project Template by cretz</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/comment-page-1/#comment-278</link>
		<dc:creator>cretz</dc:creator>
		<pubDate>Wed, 22 Jun 2011 05:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/#comment-278</guid>
		<description>Pulling any kind of resources from cross host URLs is an issue in Silverlight. You either need cross host access for your SL app (which not all sites provide), or you need to find a workaround. You can find info on this at http://msdn.microsoft.com/en-us/library/cc189008(v=VS.95).aspx and http://www.eggheadcafe.com/tutorials/aspnet/c0046ba1-5df5-486a-8145-6b76a40ea43d/silverlight-handling-crossdomain-images-and-gifs.aspx
It depends on your scenario, but you should try to get the images in your gadget package if possible.
If not, the worst case scenario will require you to interop with JavaScript to display the image as HTML on top of the SL control.</description>
		<content:encoded><![CDATA[<p>Pulling any kind of resources from cross host URLs is an issue in Silverlight. You either need cross host access for your SL app (which not all sites provide), or you need to find a workaround. You can find info on this at <a href="http://msdn.microsoft.com/en-us/library/cc189008(v=VS.95).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc189008(v=VS.95).aspx</a> and <a href="http://www.eggheadcafe.com/tutorials/aspnet/c0046ba1-5df5-486a-8145-6b76a40ea43d/silverlight-handling-crossdomain-images-and-gifs.aspx" rel="nofollow">http://www.eggheadcafe.com/tutorials/aspnet/c0046ba1-5df5-486a-8145-6b76a40ea43d/silverlight-handling-crossdomain-images-and-gifs.aspx</a><br />
It depends on your scenario, but you should try to get the images in your gadget package if possible.<br />
If not, the worst case scenario will require you to interop with JavaScript to display the image as HTML on top of the SL control.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update for Silverlight Sidebar Gadget Project Template by Kevin B</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/comment-page-1/#comment-277</link>
		<dc:creator>Kevin B</dc:creator>
		<pubDate>Tue, 21 Jun 2011 19:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/#comment-277</guid>
		<description>Is there a cross-domain issue with trying to pull in images from a URL?  I am using the Sharepoint API&#039;s to successfully pull in an image link from a list, I format that link into a Bitmap using the URI as the source but no matter how I configure things the image never is shown.  I have also just started with the plain vanilla template, added an image and hard coded a link to a picture from the web.  No luck...is there really no way to access images via URL?</description>
		<content:encoded><![CDATA[<p>Is there a cross-domain issue with trying to pull in images from a URL?  I am using the Sharepoint API&#8217;s to successfully pull in an image link from a list, I format that link into a Bitmap using the URI as the source but no matter how I configure things the image never is shown.  I have also just started with the plain vanilla template, added an image and hard coded a link to a picture from the web.  No luck&#8230;is there really no way to access images via URL?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WCF Contract Limits? by Tony</title>
		<link>http://www.lazarciuc.ro/ioan/2009/05/28/wcf-contract-limits/comment-page-1/#comment-275</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Wed, 08 Jun 2011 09:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2009/05/28/wcf-contract-limits/#comment-275</guid>
		<description>This solution does not work for me. I had the custom binding in all files, restart vs and retry adding the service reference and same result.</description>
		<content:encoded><![CDATA[<p>This solution does not work for me. I had the custom binding in all files, restart vs and retry adding the service reference and same result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Silverlight Sidebar Gadgets from Visual Studio by John</title>
		<link>http://www.lazarciuc.ro/ioan/2010/07/28/debugging-silverlight-sidebar-gadgets-from-visual-studio/comment-page-1/#comment-273</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 20 May 2011 03:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/07/28/debugging-silverlight-sidebar-gadgets-from-visual-studio/#comment-273</guid>
		<description>Excellent work by the way.....forgot to mention that bit..</description>
		<content:encoded><![CDATA[<p>Excellent work by the way&#8230;..forgot to mention that bit..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Silverlight Sidebar Gadgets from Visual Studio by John</title>
		<link>http://www.lazarciuc.ro/ioan/2010/07/28/debugging-silverlight-sidebar-gadgets-from-visual-studio/comment-page-1/#comment-272</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 20 May 2011 03:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/07/28/debugging-silverlight-sidebar-gadgets-from-visual-studio/#comment-272</guid>
		<description>Hi,

When I start the project using F5 debugging I just get a message saying &quot;The sidebar.exe process was not found&quot;

i am running Visual Studio as an admin in Windows 7 64Bit. The SideBar.exe process does show up in Task Manager.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>When I start the project using F5 debugging I just get a message saying &#8220;The sidebar.exe process was not found&#8221;</p>
<p>i am running Visual Studio as an admin in Windows 7 64Bit. The SideBar.exe process does show up in Task Manager.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Parameters in Multi-Project Templates by Frederico</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/25/custom-parameters-in-multi-project-templates/comment-page-1/#comment-267</link>
		<dc:creator>Frederico</dc:creator>
		<pubDate>Tue, 12 Apr 2011 10:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/25/custom-parameters-in-multi-project-templates/#comment-267</guid>
		<description>Dear Ioan,

At first I thought this was a pretty silly behaviour - the parent scope not affecting the children scopes - but your suggested pattern (more than a workaround in my opinion) makes a lot of sense, since it models the hierarchy in the multi-project template and gives full control for every single project generation in it.

Nice work!</description>
		<content:encoded><![CDATA[<p>Dear Ioan,</p>
<p>At first I thought this was a pretty silly behaviour &#8211; the parent scope not affecting the children scopes &#8211; but your suggested pattern (more than a workaround in my opinion) makes a lot of sense, since it models the hierarchy in the multi-project template and gives full control for every single project generation in it.</p>
<p>Nice work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update for Silverlight Sidebar Gadget Project Template by Jeff Lundstrom</title>
		<link>http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/comment-page-1/#comment-266</link>
		<dc:creator>Jeff Lundstrom</dc:creator>
		<pubDate>Tue, 05 Apr 2011 19:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazarciuc.ro/ioan/2010/04/09/update-for-silverlight-sidebar-gadget-project-template/#comment-266</guid>
		<description>I figured out the issue, I am running 64bit windows and Silverlight does not support 64bit, so my gadget wont work!  Sorry for the noise.</description>
		<content:encoded><![CDATA[<p>I figured out the issue, I am running 64bit windows and Silverlight does not support 64bit, so my gadget wont work!  Sorry for the noise.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

