<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by LeoDavidson</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by LeoDavidson</title>
		<link>http://channel9.msdn.com/Niners/LeoDavidson/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/LeoDavidson/Discussions</link>
	<language>en</language>
	<pubDate>Sat, 18 May 2013 17:32:32 GMT</pubDate>
	<lastBuildDate>Sat, 18 May 2013 17:32:32 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - &quot;Any CPU&quot; - Is it evil?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Sven Groot said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>You could also have a main 64 bit .Net process, and a 32 bit .Net process doing the interop, and then have the two communicate via .Net Remoting or WCF. It's pretty easy to set up.</p>
</div></blockquote>
<p>.Net Remoting definitely makes more sense than COM for .Net projects. I forgot all about it, even though I've used it. It's great and, like you say, really easy to use.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/ce486ab386494734a1a29deb0009f5db#ce486ab386494734a1a29deb0009f5db</link>
		<pubDate>Thu, 12 Nov 2009 11:29:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/ce486ab386494734a1a29deb0009f5db#ce486ab386494734a1a29deb0009f5db</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>11</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - &quot;Any CPU&quot; - Is it evil?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">lensman said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>What do you mean by &quot;proxy&quot;?&nbsp; If I have a seperate process load the 32 bit dll, do I not still have the same problem?&nbsp; How do I communicate with the 32 bit process from 64 bit process?</p>
<p>&nbsp;</p>
</div></blockquote>
<p>COM can make calls to objects hosted in other processes (i.e. out-of-process objects). When doing so it doesn't matter if either/both processes are 32/64 bit or not; COM handles the details for you.</p>
<p>&nbsp;</p>
<p>You could also use other IPC mechanisms like pipes, shared memory, etc. but the beauty of the COM method is that you get all the marshalling code for free and if you're already using COM then you don't have to change much.</p>
<p>&nbsp;</p>
<p>COM isn't always the best way to do it, of course, but it often is.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/662b6abfa6e942d893f89deb0009f58a#662b6abfa6e942d893f89deb0009f58a</link>
		<pubDate>Thu, 12 Nov 2009 03:24:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/662b6abfa6e942d893f89deb0009f58a#662b6abfa6e942d893f89deb0009f58a</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>11</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - &quot;Any CPU&quot; - Is it evil?</title>
		<description><![CDATA[<p><blockquote><div class="quoteText">I would prefer to put all my legacy 32 bit code into a DLL however that quickly renders it useless as 64 bit clients appear to have no means of communicating with 32 bit code.</div></blockquote></p>
<p>You can do it, you just need a 32-bit process to load the 32-bit DLLs on your behalf and then act as a proxy between your main 64-bit process and the DLLs.</p>
<p>&nbsp;</p>
<p>Obviously, how well this works depends on what the DLLs do. If the DLLs require that lots of pointers and complex data structures be passed in and out of them then you have to write a lot of marshalling glue. If not, though, it's very easy.</p>
<p>&nbsp;</p>
<p>In C&#43;&#43; code, I've used COM to get all the marshalling I need for free. COM knows how to call across the 32/64-bit boundary between processes, converting arguments appropriately. (You're already unable to share pointers across processes so the 32/64-bit issue
 doesn't change things there.)&nbsp; I'm not sure what the best approach for .Net code is, though.</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/ed325f5da7f04e51b3299deb0009f50d#ed325f5da7f04e51b3299deb0009f50d</link>
		<pubDate>Thu, 05 Nov 2009 13:47:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/502739-Any-CPU-Is-it-evil/ed325f5da7f04e51b3299deb0009f50d#ed325f5da7f04e51b3299deb0009f50d</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>11</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Windows 7 Backup error 0x80070005</title>
		<description><![CDATA[<p>Is the external hard drive formatted as NTFS? Was it formatted on another machine?</p>
<p>&nbsp;</p>
<p>It could be that you need to fix-up the file/folder permissions on the external drive so that your account is allowed to write to it.</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/501946-Windows-7-Backup-error-0x80070005/8a7baa37fb664c299c4c9deb0009da2c#8a7baa37fb664c299c4c9deb0009da2c</link>
		<pubDate>Sun, 25 Oct 2009 12:03:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/501946-Windows-7-Backup-error-0x80070005/8a7baa37fb664c299c4c9deb0009da2c#8a7baa37fb664c299c4c9deb0009da2c</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Windows 7: Epic Failure</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">littleguru said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">SandyPecker said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>*putting on my private person hat*</p>
<p>&nbsp;</p>
<p>Custom hardware? What does that mean? Did you literally build the hardware? If that is correct then it is your duty to write proper drivers and make sure that the hardware works.
</p>
<p>&nbsp;</p>
<p>Or does &quot;custom hardware&quot; mean that you bought hardware and assembled the PC on your own? If that is correct and you get the described experience that might more likely mean that you bought some hardware that doesn't work well together. Or some of the parts
 that you bought are faulty.</p>
<p>&nbsp;</p>
<p>I bought a set of hardware components recently too. And assembled them as my living room PC. Everything is brand new. Installed Windows 7. Had it go to Windows Update and install all the drivers. Everything works great. Solid and fast performance.</p>
<p>&nbsp;</p>
<p>Windows should probably have something that says: Uppps... your hardware has issues. Please replace component X.</p>
</div></blockquote>
<p>To add to that, there have been problems with certain combinations of hardware/software/OS/drivers/whatever forever. People see one Vista (or whatever) machine with the problem and someone jump to the conclusion that it's the OS when the same sort of problem
 could happen on any OS, including Winodws XP, Linux, OS X...</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/442409-Windows-7-Epic-Failure/f9b7c32a90d64bdd822a9dea010bf6d7#f9b7c32a90d64bdd822a9dea010bf6d7</link>
		<pubDate>Sat, 24 Oct 2009 17:38:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/442409-Windows-7-Epic-Failure/f9b7c32a90d64bdd822a9dea010bf6d7#f9b7c32a90d64bdd822a9dea010bf6d7</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>106</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Turning off FUS in Windows 7</title>
		<description><![CDATA[<p>This guide for Vista looks like it should still work:</p>
<p>&nbsp;</p>
<p><a href="http://www.winhelponline.com/articles/128/1/How-to-disable-Fast-User-Switching-in-Windows-Vista.html">http://www.winhelponline.com/articles/128/1/How-to-disable-Fast-User-Switching-in-Windows-Vista.html</a></p>
<p>&nbsp;</p>
<p>The options are still there in Windows 7. (I haven't actually tried them, and I'm not on a domain, but they are still in the same place except that Local Computer Policy has been renamed to Computer Configuration in the tree on the left of gpedit.msc.)</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/498754-Turning-off-FUS-in-Windows-7/2e3a2d57530e4e65bfbf9deb00097893#2e3a2d57530e4e65bfbf9deb00097893</link>
		<pubDate>Thu, 15 Oct 2009 14:34:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/498754-Turning-off-FUS-in-Windows-7/2e3a2d57530e4e65bfbf9deb00097893#2e3a2d57530e4e65bfbf9deb00097893</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p>I gave up on the alternative method in the end. Ran into too many problems with controls drawing directly into the window, or directly manipulating the window (e.g. shifting parts of it around in when scrolling), over the top of what I was doing. That's
 what makes the DWM thumbnail method so great: It takes the rendering output or the windows and does things to it without affecting it at all. (It also lets me easily create effects on areas of the top-level window which can cross over child windows.)</p>
<p>&nbsp;</p>
<p>So I went back to plan A. Almost ditched the idea completely but it looked so nice (to me <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' />) that I kept at it a bit more, and I think I now have it working really well, albeit with some kludges. Long term testing will determine whether the feature sticks
 or is canned.</p>
<p>&nbsp;</p>
<p>While playing with this stuff I discovered that Windows 7's DWM process will crash (and sometimes reset the desktop back to classic rendering) if the user invokes Aero Peek while a DWM thumbnail is being moved around in another window as Peek fades things
 out to sheets of glass. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif' alt='Sad' /></p>
<p>&nbsp;</p>
<p>Workaround is to set the new DWM window flag on the window the thumbnail is rendered into, telling DWM to ignore that window for Aero Peek. (Drawback is that it then stays visible while the other windows are faded to glass, but in my case that's fine as
 it's only visible for half a second anyway.)</p>
<p>&nbsp;</p>
<p>I also noticed that my overlay window is considered part of the main window when minimising/restoring the window, and within Flip 3D. So it's only considered a separate window during the window-open animation, which seems weird. It's like the pop-up is only
 &quot;attached&quot; to its parent after that window-open animation has completed. (I checked that I'm not opening my pop-up before the parent window has been made visible, and I'm not.)</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/b4c475f9cf3842ac92919deb000966b8#b4c475f9cf3842ac92919deb000966b8</link>
		<pubDate>Thu, 15 Oct 2009 13:25:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/b4c475f9cf3842ac92919deb000966b8#b4c475f9cf3842ac92919deb000966b8</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>As you say, it's a bit of a hack and you aren't really using DWM thumbnails in a way anyone ever intended them to work, which is probably why it doesn't. I suspect the best you'll get is to disable DWM animations for your window, although I have a suspicion
 that something like Flip3D may make your UI break also.</p>
</div></blockquote>
<p>Flip3D is fine, FWIW. You can opt windows out of it so the overlay window would be hidden whenever it's active (including when it's animating things into position).</p>
<p>&nbsp;</p>
<p>Think I'll explore an alternative way to do the effect now. Have an idea that might give a good result but won't be hardware accelerated and will only work with windows that allow painting to a specific device-context. If that works well enough then it'll
 save a lot of hassle.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/3886c1a63e2e41f98f459deb0009668c#3886c1a63e2e41f98f459deb0009668c</link>
		<pubDate>Sun, 11 Oct 2009 17:21:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/3886c1a63e2e41f98f459deb0009668c#3886c1a63e2e41f98f459deb0009668c</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">CannotResolveSymbol said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Wait, what?&nbsp; I'm not sure I follow you here...&nbsp; are you using this window as an overlay to add visual effects to your application or are you using this window to draw a custom preview thumbnail?</p>
<p>&nbsp;</p>
<p>At any rate, anything you do on this is a hack.&nbsp; You're only going to get so far before you need to move to a proper animation framework (through WPF, through the Windows 7-specific Animation Manager, or through a third-party framework).&nbsp; Might as well do
 it right from the start than have to come back in a year and rewrite everything when you need to do something that's beyond what your hack-around can do.</p>
</div></blockquote>
<p>It is a bit of a hack, but one which works well (so far, at least) apart from this one issue.</p>
<p>&nbsp;</p>
<p>Spending the next few years re-writing the entire app to get a bit of eye candy isn't an option, as nice as that idea may sound in an ideal world with infinite time &amp; resources and access to the source code of all OS and 3rd party components. (This effect
 has to work, for example, on hosted ActiveX controls.) If re-writing the whole app is the only option then I'll simply do without the effect.</p>
<p>&nbsp;</p>
<p>However, if there is some way to detect when DWM has finished animating my window then I believe I can make everything work perfectly.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/97d2c3552ca14e1e98569deb00096639#97d2c3552ca14e1e98569deb00096639</link>
		<pubDate>Sun, 11 Oct 2009 11:34:14 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/97d2c3552ca14e1e98569deb00096639#97d2c3552ca14e1e98569deb00096639</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">CannotResolveSymbol said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">figuerres said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>You don't need to &quot;make it act like a docking panel&quot; (or provide any behavior at all, really), just setting the parent of your effects window to your main window should be sufficient to make it behave as though its part of the main window from the DWM's
 perspective (along with the obvious change to use coordinates relative to the window).</p>
<p>&nbsp;</p>
<p>Downside:&nbsp; if your child window has a title bar, it will most likely no longer be drawn by the DWM.&nbsp; Also, you can get some weirdness WRT keyboard focus when doing this; if your effects window is just a transient thing, this shouldn't be an issue (and it
 won't be any more of an issue than when you were using a separate window).</p>
</div></blockquote>
<p>The effects window can't be a proper child (WS_CHILD) of the main window since DWM thumbnails can only be drawn into top-level windows.</p>
<p>&nbsp;</p>
<p>(Drawing the thumbnail directly into the main window won't work as the thumbnail is
<em>of</em> the main window and DWM checks for such loops.)</p>
<p>&nbsp;</p>
<p>When I create the effects window as a popup (WS_POPUP) I am specifying the main window as the parent in the CreateWindowEx call, but that doesn't seem to help. It opens in-place instantly instead of being animated like the main window is.</p>
<p>&nbsp;</p>
<p>If I call SetParent on the effects window right after creating it, specifying the main window as its parent, then that breaks the DWM thumbnail.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/58a5014ae9e3400090869deb00096591#58a5014ae9e3400090869deb00096591</link>
		<pubDate>Sat, 10 Oct 2009 20:14:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/58a5014ae9e3400090869deb00096591#58a5014ae9e3400090869deb00096591</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>well a control is an hwnd .....</p>
<p>and that is in an hwnd.....</p>
<p>&nbsp;</p>
<p>it would seem like you could create a window that is a child of the &quot;main&quot; window and make it act like a docking panel</p>
<p>that might do it for you?</p>
<p>&nbsp;</p>
<p>just don't try this with anti-matter <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley">&nbsp; BOOM!</p>
</div></blockquote>
<p>They're all HWNDs but that doesn't mean WPF can draw a window that displays a modified copy of my native windows on top of those windows (which is what I'm doing at the moment), due to the &quot;airspace restrictions&quot;.</p>
<p>&nbsp;</p>
<p>As far as I can tell, mixing WPF and native controls just means they can sit next to each other in the same window. I don't think they can visually interact/overlap.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/41ae005c343c48048eeb9deb00096566#41ae005c343c48048eeb9deb00096566</link>
		<pubDate>Sat, 10 Oct 2009 19:48:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/41ae005c343c48048eeb9deb00096566#41ae005c343c48048eeb9deb00096566</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>well one thing i was thinking of was to make a dll that was C&#43;&#43;/CLI with just the UI bits only.</p>
<p>so 90% of the app logic would stay in raw C&#43;&#43; and would just have calls to an interface / with the impliemtation in C&#43;&#43;/CLI</p>
<p>minimal impack to the perf of the app and to the non-ui code.</p>
<p>&nbsp;</p>
<p>honestly there comes a point when IMHO it becomes time to embrace a chnage, WPF was made for making better visuals that in apps and to be able to do things that were difficult or impossible with GDI and WInforms.</p>
<p>sounds like you are getting into that area or right on the edge of it.</p>
<p>&nbsp;</p>
<p>just as a bit of input - Over the last few months I have been getting more into SIlverlight as our clients use a lot of web stuff and they have been asking for more complex things that really needed silverlight or flash to do them.</p>
<p>&nbsp;</p>
<p>so with silverlight what i have found is that on the code side i can't really see any huge change from winforms to xaml in event handlers and other mundane coding.</p>
<p>yes xaml is very different from the classic forms code but even then most of the code that interacts with the markup is not that far different.</p>
<p>&nbsp;</p>
<p>now things like building a dependancy property - a bit funky but not hard to follow.</p>
<p>&nbsp;</p>
<p>just so you know that it's some work but not all that hard if you take a bit of time and study some examples.</p>
</div></blockquote>
<p>There's too much existing UI code in the project to make porting to WPF a realistic option. It also hosts several native 3rd party UI components that don't have WPF equivalents. An all-WPF UI would definitely make this kind of thing easier if it was a new
 or small project but it'd take man-years to change the existing project.</p>
<p>&nbsp;</p>
<p>Using WPF for individual controls in the UI would be fine, but I want something which can apply effects on top of existing controls/window regions.</p>
<p>&nbsp;</p>
<p>Hmm, I wonder if there's a way to make DWM treat two top-level windows as part of the same thing, applying the same animations &amp; transforms to both at once? That would solve things as well.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/6e3cbeaece824905b7719deb000964e9#6e3cbeaece824905b7719deb000964e9</link>
		<pubDate>Sat, 10 Oct 2009 11:24:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/6e3cbeaece824905b7719deb000964e9#6e3cbeaece824905b7719deb000964e9</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms742522.aspx">http://msdn.microsoft.com/en-us/library/ms742522.aspx</a></p>
<p>&nbsp;</p>
<p>you can host wpf from win32 according to this page in msdn.</p>
</div></blockquote>
<p>I think that's using C&#43;&#43;/CLI so it'd turn my app into a managed one which I want to avoid. (On the grounds of avoiding complexity, if nothing else.)</p>
<p>&nbsp;</p>
<p>Not sure WPF would solve the problem anyway, unless the whole UI was re-written as WPF? When WPF and Win32 are used in the same window they have to be segregated (no overlapping controls/regions). They can share a window but they can't interact, at least
 as I understand it.</p>
<p>&nbsp;</p>
<p>My aim is to make something that can be slotted into existing code without much plumbing and without having to change the way existing controls paint themselves or the way they are hosted in the window.</p>
<p>&nbsp;</p>
<p>DWM's live-thumbnail API is perfect for that as it lets me render a live copy of the window, faded/enlarged/reduced. From just messing around with it for a day I've got something that's almost perfect, except when DWM is messing with my window's shape in
 a way I don't know how to detect.</p>
<p>&nbsp;</p>
<p>(Hope that makes sense. Probably not explaining myself very well at 4am. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' />)</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/9e960481d8f64931a7ae9deb0009648c#9e960481d8f64931a7ae9deb0009648c</link>
		<pubDate>Sat, 10 Oct 2009 03:31:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/9e960481d8f64931a7ae9deb0009648c#9e960481d8f64931a7ae9deb0009648c</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<p>are you using WPF or GDI&#43; ?</p>
<p>&nbsp;</p>
<p>with wpf you can't do it in one window?</p>
</div></blockquote>
<p>Plain GDI. GDI&#43; is an option but I don't think it would help here. I can't use WPF as it's a C&#43;&#43; app.</p>
<p>&nbsp;</p>
<p>The effects window I'm overlaying has a static copy of what the main window used to look like. On to that I'm using DWM to render a live copy of the main window. The live copy scrolls/fades/zooms to give a smooth transition from the old UI state to the new
 one.</p>
<p>&nbsp;</p>
<p>Doing it this way means the existing UI elements don't need to be modified for the effect to work; they just paint themselves as normal. During the transition the UI remains &quot;live&quot;, painting updates and responding to the mouse and keyboard (since the effects
 window is &quot;click-through&quot;). With just two lines of code I can add a transition effect to almost any UI change.</p>
<p>&nbsp;</p>
<p>It all seems to work great, except if the effect is triggered while DWM is applying its own transition animations to the window. So if I could just detect when/whether those are happening I could disable my effect.</p>
<p>&nbsp;</p>
<p>(Obviously I also have to worry about the main window being moved or resized while the effects window is over the top of it. That is easy enough. The problem with the DWM animations is that they visually move the window and yet it doesn't move as far as
 things like GetWindowRect or WM_SIZE are concerned.)</p>
<p>&nbsp;</p>
<p>Maybe a picture shows it better. Say notepad is opening:</p>
<p>&nbsp;</p>
<p>(It's actually a screenshot of notepad closing, as that was easier to capture, but just pretend it's opening instead. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' />)</p>
<p>&nbsp;</p>
<p><a rel="lightbox" href="http://nudel.kelbv.com/notepad-closing.png"><img src="http://nudel.kelbv.com/notepad-closing.png" alt=""></a></p>
<p>&nbsp;</p>
<p>If you were to overlay a copy of its client area on top of where the OS reports it to be, you'd end up with this:</p>
<p>&nbsp;</p>
<p><a rel="lightbox" href="http://nudel.kelbv.com/notepad-overlay.png"><img src="http://nudel.kelbv.com/notepad-overlay.png" alt=""></a></p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/46accea7d57f41b48fd89deb00096434#46accea7d57f41b48fd89deb00096434</link>
		<pubDate>Sat, 10 Oct 2009 01:41:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/46accea7d57f41b48fd89deb00096434#46accea7d57f41b48fd89deb00096434</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Way to detect DWM open/close window animations?</title>
		<description><![CDATA[<p>On Windows 7, I'm trying to write something which overlays a top-level layered window above my app's main window to create some visual effects. The intention is to make it look like everything is part of the main window even though there's really another
 window above it rendering some of the effects.</p>
<p>&nbsp;</p>
<p>It goes wrong if the main window is opening / closing / minimizing / etc. because of the DWM's animations. The top-level effects window is positioned so that it's on top of where GetWindowRect reports the main window to be, but the on-screen representation
 of the main window isn't really there. The main window is being transformed &amp; animated in 3D space away from or towards the reported window location. So my top-level effects window is sitting in space looking really weird and drawing its effects over other
 windows. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>&nbsp;</p>
<p>I'd be happy to simply disable my effect while the DWM animations are playing. Problem is I can't see a way to detect them. I'd like to do it properly in case future OS versions make the animations longer or shorter. i.e. I'd prefer not to use a kludge that
 says &quot;don't apply my effects if the window was only opened/restored/maximized 1 second ago.&quot;</p>
<p>&nbsp;</p>
<p>(I don't want to turn off the DWM animations for the main window.)</p>
<p>&nbsp;</p>
<p>There are a <a href="http://msdn.microsoft.com/en-us/library/aa969503%28VS.85%29.aspx">
bunch of stats</a> returned by <a href="http://msdn.microsoft.com/en-us/library/aa969514%28VS.85%29.aspx">
DwmGetCompositionTimingInfo</a> but I'm not sure if any of them are useful for detecting the animations. It's not very clear to me what the stats are for but I'm guessing it's to do with syncing multimedia or measuring performance rather than seeing what's
 going on with a particular window.</p>
<p>&nbsp;</p>
<p>There's also some DWM APIs like <a href="http://msdn.microsoft.com/en-us/library/dd389405%28VS.85%29.aspx">
DwmFlush</a>, <a href="http://msdn.microsoft.com/en-us/library/dd389403%28VS.85%29.aspx">
DwmAttachMilContent</a>, <a href="http://msdn.microsoft.com/en-us/library/dd389407%28VS.85%29.aspx">
DwmGetGraphicsStreamTransformHint</a>, <a href="http://msdn.microsoft.com/en-us/library/dd389406%28VS.85%29.aspx">
DwmGetGraphicsStreamClient</a> which (despite dating back to Vista) still seem to be undocumented (beyond their argument/return types). Is there some fuller documentation for the DWM API somewhere that I'm missing?</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/497415#497415</link>
		<pubDate>Fri, 09 Oct 2009 23:16:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/497415-Way-to-detect-DWM-openclose-window-animations/497415#497415</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Virus Apple in your PC</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Bas said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Dovella said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<br>
<br>
Whoa! No, I wouldn't stand for that either.</div></blockquote>
<p>I'd pay good money to see that. It sounds like an awesome case-mod.</p>
<p>&nbsp;</p>
<p>So long as the cooling/airflow is good, at any rate.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/416194-Virus-Apple-in-your-PC/9a4bf70d1dfd47d5b74d9deb012ef8e8#9a4bf70d1dfd47d5b74d9deb012ef8e8</link>
		<pubDate>Tue, 29 Sep 2009 15:25:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/416194-Virus-Apple-in-your-PC/9a4bf70d1dfd47d5b74d9deb012ef8e8#9a4bf70d1dfd47d5b74d9deb012ef8e8</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>96</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What don&#39;t you like about Windows 7?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">PaoloM said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">TommyCarlier said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>This is as much a &quot;showstopper&quot; as the infamous &quot;chkdsk&quot; bug <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
</div></blockquote>
<p>It's worse because the cursor bug really exists while the chkdsk thing was part misunderstanding and part 3rd party chipset driver bug. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>&nbsp;</p>
<p>i.e. The chkdsk thing is 0 bad and the cursor thing is 0.00000001 bad. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif' alt='Big Smile' /></p>
<p>&nbsp;</p>
<p>Nobody is (seriously) calling it a showstopper, of course. Just a small cosmetic glitch that will drive some people with OCD crazy. (I can see it really easily but, thankfully, it doesn't bother me. It does have me curious about what the cause is, though,
 as the .ani cursor file plays fine in other things.)</p>
<p>&nbsp;</p>
<p>Edit:</p>
<p>&nbsp;</p>
<p>I solved the mystery. The Win7 busy-cursor files have two sizes embedded (48x48 and 32x32). The larger size is fine and are what you'll see if you open the file in most editors. Not sure if any ani-cursor tools understand the dual-size files so I used a
 hex editor to extract the individual 32x32 frames. Those are the ones Windows actually uses (at default DPI anyway). It's then
<a href="http://nudel.kelbv.com/cursor_extract.png">easy to see</a> that frame 6 is an exact copy of frame 7, and what should be frame 6 is missing, causing the glitch. (You can also see that the 48x48 versions are fine.)</p>
<p>&nbsp;</p>
<p>Very simple explanation in the end. It only seemed confusing because the tools we were using to look at the file hid the fact it had two sizes of images inside of it.</p>
<p>&nbsp;</p>
<p>Edit 2: I made <a href="http://www.pretentiousname.com/win7_fixed_aero_busy/">
fixed versions of the cursors</a>, for a 0.00000001 increase in <a href="http://en.wikipedia.org/wiki/For_great_justice">
the greatness of justice</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/f693b6a687144409b9619deb00dcbb0d#f693b6a687144409b9619deb00dcbb0d</link>
		<pubDate>Sun, 16 Aug 2009 16:23:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/f693b6a687144409b9619deb00dcbb0d#f693b6a687144409b9619deb00dcbb0d</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>59</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What don&#39;t you like about Windows 7?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">PerfectPhase said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Open the task manager, go to performance, click resource monitor and select the network tab.</p>
</div></blockquote>
<p>Thank you! I hadn't seen that. It looks better than all the other tools. Score!</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/ff908b6055e54a908b6f9deb00dcb983#ff908b6055e54a908b6f9deb00dcb983</link>
		<pubDate>Sat, 15 Aug 2009 11:34:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/ff908b6055e54a908b6f9deb00dcb983#ff908b6055e54a908b6f9deb00dcb983</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>59</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What don&#39;t you like about Windows 7?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">andokai said:</div><div class="quoteText">
<p>Anyone else notice how Windows Defender has been stripped down? It used to be possible to use it to remove all the junk from your startup items. That's no longer the case.</p>
</div></blockquote>
<p>It also lost the handy display of apps and their network connections.</p>
<p>&nbsp;</p>
<p>You can do the same stuff using some lightweight (install-free) alternatives, though:</p>
<p>&nbsp;</p>
<p>Sysinternals' <a href="http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx">
AutoRuns</a> is a good for managing startup items (and a lot of other stuff). <a href="http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx">
TCPView</a> (or the built-in <strong>netstat </strong>command) can show the network connections open by each process.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/d2009b570bc644a7980a9deb00dcb678#d2009b570bc644a7980a9deb00dcb678</link>
		<pubDate>Fri, 14 Aug 2009 08:59:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/d2009b570bc644a7980a9deb00dcb678#d2009b570bc644a7980a9deb00dcb678</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>59</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What don&#39;t you like about Windows 7?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Red5 said:</div><div class="quoteText">
<p>So far, I'm pleased and impressed with this version over Vista. Vista set the bar sort of low so to reach beyond that probably wasn't to much to ask.</p>
<p>I have win7 on my acer netbook for 3 days now. So far so good. I think my use of the OS features&nbsp;though is a lot less than some of the descriptions I see here.
</p>
<p>Compared to XP though? time will tell. My netbook had XP Home on it from the factory and so far Win7 seems a little slower, which I expected, but it's not enough to for me to be too vociferous yet. The 60 second lag someone mentioned previously is about
 the biggest complaint I have so far.</p>
<p>Once i get it on my dual monitor desktop, I may have more to say...</p>
</div></blockquote>
<p>I just noticed a cool improvement in Win7's remote desktop for multi-monitors (unless I imagined it happening):</p>
<p>&nbsp;</p>
<p>When you RDP from a single-monitor PC it moves all the windows to the one screen (Vista stopped doing that and it was a mixed blessing), but when you go back to using the machine locally it moves the windows back to the monitors they were on (fantastic!).</p>
<p>&nbsp;</p>
<p>On the flipside, I don't really like how when I RDP into my desktop the desktop's monitors come out of powersaving just to show the screen lock (logon desktop). I guess I can give the logon desktop the Blank screensaver with a short timeout to stop the monitors
 lighting up the room for long, though. (Assuming you still can. There's no longer any screensaver on the logon desktop, by default, which seems odd.)</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/d17d10db23ea4f71a8509deb00dcb4e1#d17d10db23ea4f71a8509deb00dcb4e1</link>
		<pubDate>Thu, 13 Aug 2009 22:10:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/468733-What-dont-you-like-about-Windows-7/d17d10db23ea4f71a8509deb00dcb4e1#d17d10db23ea4f71a8509deb00dcb4e1</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>59</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Small server speed test... if you don&#39;t pay for bandwidth and have a few moments</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">W3bbo said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Leo, you should know better than thread necromancy <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif" alt="Tongue Out"></p>
</div></blockquote>
<p>Oh, oops. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>&nbsp;</p>
<p>I thought it said Aug(ust) rather than Apr(il) and am suitably out of touch with reality to not realise that 17th August is in the future. lol</p>
<p>&nbsp;</p>
<p>&quot;My bad!&quot;</p>
<p>&nbsp;</p>
<p>Old posts should change colour or something so they're easier to spot. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/465800-Small-server-speed-test-if-you-dont-pay-for-bandwidth-and-have-a-few-moments/161cac4857724268b60f9deb00d8578d#161cac4857724268b60f9deb00d8578d</link>
		<pubDate>Mon, 10 Aug 2009 13:46:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/465800-Small-server-speed-test-if-you-dont-pay-for-bandwidth-and-have-a-few-moments/161cac4857724268b60f9deb00d8578d#161cac4857724268b60f9deb00d8578d</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Small server speed test... if you don&#39;t pay for bandwidth and have a few moments</title>
		<description><![CDATA[<p>Connection Speed: ~14 megabit/s downstream</p>
<p>Location: London, England</p>
<p>&nbsp;</p>
<p>Server #1: 1.5 megabyte/s (excellent; saturates my connection)</p>
<p>Server #2: 30 kilobyte/s (slow; modem speed)</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/465800-Small-server-speed-test-if-you-dont-pay-for-bandwidth-and-have-a-few-moments/6c29a743fde5469f99ac9deb00d8563d#6c29a743fde5469f99ac9deb00d8563d</link>
		<pubDate>Mon, 10 Aug 2009 12:39:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/465800-Small-server-speed-test-if-you-dont-pay-for-bandwidth-and-have-a-few-moments/6c29a743fde5469f99ac9deb00d8563d#6c29a743fde5469f99ac9deb00d8563d</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Bravo Apple!</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Harlequin said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">LeoDavidson said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>But if I remember right, another example of a problem with iTunes, is that&nbsp;iTunes doesn't put your track ratings back into the mp3 files, it just keeps them in the library. Really rendering the rating system useless and proving that Apple just likes sitting
 in it's own sandbox and won't let any kids come in and play with it, nor do they want to leave the sandbox and play with others. It's a crappy analogy but I think it gets the point across
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
</div></blockquote>
<p>There's a good argument for not putting track ratings into the music files: They're subjective, not objective data.</p>
<p>i.e. If the music file is shared by multiple people, they will not all agree on how much they like it. They'll all agree on things like the artist name, track name and publishing date though. (Well, within reason. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> Sometimes people disagree on what to
 put in those fields as well.)</p>
<p>(People may also want to rate files on read-only network drives or optical media, I suppose.)</p>
<p>As usual, I'd say the ideal would be an option about where to store the rating data. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>(Personally, &quot;nowhere&quot; is a good answer as I've never seen the point of rating files. If something is garbage, delete it, and everything else is so dependent on mood that the rating doesn't mean much to me. Could be because I'm an &quot;album guy&quot; rather than
 a &quot;shuffle play guy&quot;, though.)</p>
<p>&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/477407-Bravo-Apple/6ebc318f33d749dfa6279deb00e6059e#6ebc318f33d749dfa6279deb00e6059e</link>
		<pubDate>Wed, 08 Jul 2009 18:36:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/477407-Bravo-Apple/6ebc318f33d749dfa6279deb00e6059e#6ebc318f33d749dfa6279deb00e6059e</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Bravo Apple!</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">littleguru said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Oh believe me I know. It's a daily issue round here....</p>
</div></blockquote>
<p>Indeed. Every large company I've worked for has had dog slow networks (at least for the IT staff/buildings), limited desktop HDD space (sometimes painful with big C&#43;&#43; builds) and severely limited network storage (a constant annoyance). Logging in to a machine
 that hadn't been used before was always slow, even without gratuitous data put into the roaming profile.</p>
<p>Despite being companies that made billions a year they were all very tight when it came to storage. Online web mail gives people more storage than any company I've worked at gave their employees... If you were lucky you'd be able to store a few hundred meg.
 A few gigabytes would be out of the question. We used to joke about buying a HDD ourselves and installing it into the servers if the company couldn't afford it. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>Some thing storing 270MB of data in the roaming profile would cause so many unneccssary problems.</p>
<p>(Not that I'd ever install iTunes on a work machine, but it's still something Apple should've fixed a long time ago. They've been putting stuff there for ages.)</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/477407-Bravo-Apple/6baf109d85374c9daf279deb00e604b9#6baf109d85374c9daf279deb00e604b9</link>
		<pubDate>Wed, 08 Jul 2009 14:53:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/477407-Bravo-Apple/6baf109d85374c9daf279deb00e604b9#6baf109d85374c9daf279deb00e604b9</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Google (Chrome) OS</title>
		<description><![CDATA[<p>So Google are making an OS with the fewest features to couple with the web browser with the fewest features? Great, I'll rush to drink that Kool-Aid.</p>
<p>So many of their plus points seem to be &quot;we avoid the speed/complexity/security issues of XYZ&quot; when it's because they aren't allowing the user to do XYZ at all. Hardly seems like a win, at least in the cases where people were never forced to do that thing
 by default.</p>
<p>I hope this isn't the future of computing as I hate the idea of web-based apps. They're good for some things (and I'm arguably typing into one right now to post this) but not for everything. Not while so many people still have slow and/or fragile net access,
 and the technologies involved are still so klunky.</p>
<p>That isn't to say that the way traditional desktop apps/OS work is perfect, of course.</p>
<p>I'm sick of hearing &quot;the open source community&quot; as if it's a single group of people, too.</p>
<p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/477411-Google-Chrome-OS/4b48598161b14a5db3239deb00e60c66#4b48598161b14a5db3239deb00e60c66</link>
		<pubDate>Wed, 08 Jul 2009 13:38:01 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/477411-Google-Chrome-OS/4b48598161b14a5db3239deb00e60c66#4b48598161b14a5db3239deb00e60c66</guid>
		<dc:creator>LeoDavidson</dc:creator>
		<slash:comments>125</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/LeoDavidson/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>