<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx</link><description>FotoVision has released to the web (thanks to Ed Kaim for drawing this to my attention). This is a fantastic new smart client application suite developed by Vertigo Software (some of the brightest developers I know, who were also responsible for the original</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>Fotovision</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#721646</link><pubDate>Fri, 25 Aug 2006 11:18:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:721646</guid><dc:creator>Luciano Evaristo Guerche</dc:creator><description>From the capable group at Vertigo Software (the same folks who produced the venerable IBuySpy and Quake&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=721646" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#437619</link><pubDate>Mon, 11 Jul 2005 22:05:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:437619</guid><dc:creator>-DC-</dc:creator><description>I wonder how this compares to SPGM?&lt;br&gt;&lt;a rel="nofollow" target="_new" href="http://spgm.sourceforge.net/"&gt;http://spgm.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=437619" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#171958</link><pubDate>Sat, 03 Jul 2004 01:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:171958</guid><dc:creator>Joe</dc:creator><description>C# version would be cool.&lt;br&gt;&lt;br&gt;Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=171958" width="1" height="1"&gt;</description></item><item><title>Fotovision</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#159476</link><pubDate>Fri, 18 Jun 2004 21:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:159476</guid><dc:creator>Luciano Evaristo Guerche</dc:creator><description>&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=159476" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158595</link><pubDate>Fri, 18 Jun 2004 04:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158595</guid><dc:creator>Ralph Arvesen</dc:creator><description>Thanks for the note on DROP_SHADOW windows style when running on Win2000. The minimum requires was decided to be XP but that's not mentioned or enforced. It would be nice to make it work on previous version of Windows also. We rebuilt the sample and a new version should be posted on the FotoVision site that checks for XP before using the DROP_SHADOW style. Thanks again,&lt;br&gt;- ralph&lt;br&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158595" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158236</link><pubDate>Thu, 17 Jun 2004 23:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158236</guid><dc:creator>Christopher Lewis</dc:creator><description>There's a bug in the desktop viewer when run under Windows 2000.&lt;br&gt;&lt;br&gt;The code attempts to use the window property DROP SHADOW, which doesn't exist for 2000.&lt;br&gt;&lt;br&gt;Here's the code fix:&lt;br&gt;&lt;br&gt;PropertiesForm.vb&lt;br&gt;LINE 340&lt;br&gt;	' use the XP drop shadow&lt;br&gt;	Protected Overrides ReadOnly Property CreateParams() As CreateParams&lt;br&gt;		&amp;lt;SecurityPermission(SecurityAction.LinkDemand, Flags:=SecurityPermissionFlag.UnmanagedCode)&amp;gt; Get&lt;br&gt;      Dim cp As CreateParams = MyBase.CreateParams&lt;br&gt;&lt;br&gt;      ' Check OS Before using XP drop shadow&lt;br&gt;      Dim OSVer As Version = System.Environment.OSVersion.Version()&lt;br&gt;      Select Case OSVer.Major&lt;br&gt;        Case Is &amp;lt;= 5&lt;br&gt;        Case 5&lt;br&gt;          If OSVer.Minor &amp;gt; 0 Then&lt;br&gt;            cp.ClassStyle = cp.ClassStyle Or Win32.CS_DROPSHADOW&lt;br&gt;          End If&lt;br&gt;        Case Is &amp;gt; 5&lt;br&gt;          cp.ClassStyle = cp.ClassStyle Or Win32.CS_DROPSHADOW&lt;br&gt;        Case Else&lt;br&gt;      End Select&lt;br&gt;      Return cp&lt;br&gt;&lt;br&gt;    End Get&lt;br&gt;  End Property&lt;br&gt;&lt;br&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158236" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158150</link><pubDate>Thu, 17 Jun 2004 21:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158150</guid><dc:creator>Don Newman</dc:creator><description>I've been meaning to get around to learning some of that graphics manipulation stuff. Looks like prodding around this thing might be a good start. Unless somebody out there can recommend something else ( send any suggestions through &lt;a target="_new" href="http://ghostdev.ca/contact.aspx"&gt;http://ghostdev.ca/contact.aspx&lt;/a&gt; )&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158150" width="1" height="1"&gt;</description></item><item><title>re: FotoVision: New End-to-End .NET Smart Client Sample Application</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158014</link><pubDate>Thu, 17 Jun 2004 18:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158014</guid><dc:creator>SimonTocker</dc:creator><description>Woohoo, its great, got it working in minutes and uploaded to my photo site.  This is going to be so much easier to manage than MSN groups for my photos, I never got round to writing my version which was going to be similar, perhaps I will use this as a base, once I've converted it to c# ;-)&lt;br&gt;&lt;br&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158014" width="1" height="1"&gt;</description></item><item><title>FotoVision</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158086</link><pubDate>Thu, 17 Jun 2004 15:09:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158086</guid><dc:creator>Impersonation Failure</dc:creator><description>A new end-end .net smart client application, FotoVision, has been released to the web. [Tim Sheath] Also developed by Vertigo Software that developed the IssueVision and IBuySpy samples (and several other stuff like the ASP.NET starter kits) and I also learned today they were responsible for  porting Quake II to .NET. &lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158086" width="1" height="1"&gt;</description></item><item><title>FotoVision</title><link>http://blogs.msdn.com/b/tims/archive/2004/06/17/157894.aspx#158085</link><pubDate>Thu, 17 Jun 2004 15:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:158085</guid><dc:creator>Impersonation Failure</dc:creator><description>&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=158085" width="1" height="1"&gt;</description></item></channel></rss>