User EHaskins - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:09:56Z http://stackoverflow.com/feeds/user/100 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/397257/force-textblock-to-wrap-in-wpf-listbox 6 Force textblock to wrap in WPF listbox EHaskins 2008-12-29T07:01:49Z 2009-12-18T04:20:51Z <p>I have a WPF listbox which displays messages. It contains an avatar on the left side and the username and message stacked vertically to the right of the avatar. The layout is fine until the message text should word wrap, but instead I get a horizontal scroll bar on the listbox. </p> <p>I've Googled and found solutions to similar issues, but none of them worked.</p> <pre><code> &lt;ListBox HorizontalContentAlignment="Stretch" ItemsSource="{Binding Path=FriendsTimeline}"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Border BorderBrush="DarkBlue" BorderThickness="3" CornerRadius="2" Margin="3" &gt; &lt;Image Height="32" Width="32" Source="{Binding Path=User.ProfileImageUrl}"/&gt; &lt;/Border&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;TextBlock Text="{Binding Path=User.UserName}"/&gt; &lt;TextBlock Text="{Binding Path=Text}" TextWrapping="WrapWithOverflow"/&gt; &lt;!-- This is the textblock I'm having issues with. --&gt; &lt;/StackPanel&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> http://stackoverflow.com/questions/276585/enumeration-extension-methods 0 Enumeration extension methods EHaskins 2008-11-09T22:31:22Z 2009-09-08T10:14:45Z <p>In vs2008, is it possible to write an extension methods which would apply to any enumeration.</p> <p>I know you can write extension methods against a specific enumeration, but I want to be able to every enumeration using a single extension method. Is this possible?</p> http://stackoverflow.com/questions/1285798/is-it-possible-to-change-a-console-windows-icon-from-net 3 Is it possible to change a console window's icon from .net? EHaskins 2009-08-17T01:10:32Z 2009-08-23T19:05:02Z <p>Is it possible to change a console window's icon from .net? Without using win32 calls.</p> http://stackoverflow.com/questions/1285798/is-it-possible-to-change-a-console-windows-icon-from-net/1285881#1285881 0 Answer by EHaskins for Is it possible to change a console window's icon from .net? EHaskins 2009-08-17T01:56:57Z 2009-08-23T19:05:02Z <p>I had the icon set in the project properties, as Chakrit suggested, but my problem was that I was running it from Visual Studio, which runs app.vshost.exe, not app.exe directly. </p> <p>Since app.vshost.exe didn't have the icon it was appearing not to work, even though it was configured correctly.</p> <p><em>If a moderator see this, please un-delete chakrit's very good post.</em></p> http://stackoverflow.com/questions/1251830/building-a-simple-cms/1252248#1252248 1 Answer by EHaskins for Building a simple CMS EHaskins 2009-08-09T20:48:13Z 2009-08-09T20:48:13Z <p>Any language can be used to create a CMS, and chances are that any language you can think of has several CMSs written in it.</p> <p>If you're looking to build your own a good starting point may be to look at existing projects on <a href="http://www.codeplex.com/site/search?projectSearchText=cms" rel="nofollow">CodePlex</a> and/or <a href="http://sourceforge.net/search/?type%5Fof%5Fsearch=soft&amp;words=cms" rel="nofollow">Sourceforge</a>.</p> http://stackoverflow.com/questions/237/distributed-source-control-options 14 Distributed source control options EHaskins 2008-08-01T22:20:22Z 2009-08-04T21:59:41Z <p>I've been interested in Git, but the last time I looked the Windows support was essentially "run Linux".</p> <p>Are there any distributed source control tools that run well on Windows?</p> http://stackoverflow.com/questions/48872/why-when-should-you-use-nested-classes-in-net-or-shouldnt-you 6 Why/when should you use nested classes in .net? Or shouldn't you? EHaskins 2008-09-07T23:01:20Z 2009-07-05T18:32:01Z <p>In <a href="http://msmvps.com/blogs/kathleen/archive/2008/09/05/in-praise-of-nested-classes.aspx" rel="nofollow">Kathleen Dollard's recent blog post</a>, she presents an interesting reason to use nested classes in .net. However, she also mentions that FxCop doesn't like nested classes. I'm assuming that the people writing FxCop rules aren't stupid, so there must be reasoning behind that position, but I haven't been able to find it.</p> http://stackoverflow.com/questions/1054233/do-experienced-programmers-still-use-flowcharts-to-work-out-the-order-of-operatio/1054246#1054246 1 Answer by EHaskins for Do experienced programmers still use flowcharts to work out the order of operations, or do they do it in their heads? EHaskins 2009-06-28T04:39:29Z 2009-06-28T04:39:29Z <p>My opinion is that when working at the method or expression level flow charts are usually overkill. However they can be useful for learning, or for understanding broad control flow in an application.</p> <p>If you find them useful there is no reason not to use them.</p> http://stackoverflow.com/questions/364665/how-can-i-create-a-foreign-key-which-references-an-entire-composite-key 2 How can I create a foreign key which references an entire composite key? EHaskins 2008-12-13T01:55:30Z 2009-06-17T08:21:54Z <p>I have two tables one has a three column composite key. The other needs to reference this composite key.</p> <p>What is the syntax for creating a foreign key which references multiple columns. </p> <p>I tried googleing, but I couldn't find it. </p> http://stackoverflow.com/questions/4458/domain-specific-language-resources 8 Domain Specific Language resources EHaskins 2008-08-07T06:24:33Z 2009-06-10T07:05:19Z <p>I was just listening to some older .Net Rocks! episodes, and I <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=D91887EA-5128-4BB1-B861-1DC1F9564941&amp;displaylang=en" rel="nofollow">found #329 on DSLs</a> to be interesting. My problem is that I can't find any good online resources for people trying to learn this technology. I get the basics of the creating new designers, but the MS docs on the T4 engine used by the DSL tools and then how to integrate the templates with the DSL models are lacking.</p> <p>Does anyone know of some good introductory resources for the MS DSL tools?</p> <p>Thanks.</p> http://stackoverflow.com/questions/249220/what-is-the-best-net-micro-framework-dev-board-for-under-300 4 What is the best .net Micro Framework dev board, for under $300? EHaskins 2008-10-30T03:53:00Z 2009-06-07T01:53:40Z <p>I'm looking for a relativity cheap .net Micro Framework development board for use on a personal robotics project. I'd don't need much for I/O, but I want at least one serial port and one Ethernet port. </p> <p>I would prefer not to have to spend more than $300 on the board, but if there is an obvious reason to get a better one I'm flexible. </p> <p>Currently I'm looking at <a href="http://www.sjjmicro.com/EDK.html" rel="nofollow">this device from SJJ Embedded Micro Solutions</a>. Has anyone had experience with this device?</p> http://stackoverflow.com/questions/401816/how-can-i-make-a-click-once-deployed-app-run-at-startup 2 How can I make a Click-once deployed app run at startup? EHaskins 2008-12-30T23:17:53Z 2009-05-25T01:34:30Z <p>How can I make a Click-once deployed app run a startup?</p> <p>The best option I found by searching was to set the Publisher on the app to Startup, so the Start menu shortcut would be placed in the Startup folder, but that seems like a huge hack and I would like there to be a Start menu icon people can find.</p> <p>What options do I have?</p> http://stackoverflow.com/questions/2942/hsl-in-net 3 HSL in .net EHaskins 2008-08-05T22:40:25Z 2009-04-27T09:17:22Z <p>What tools have you used for working with HSL colors in .net?</p> http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/3117#3117 64 Answer by EHaskins for Best ways to teach a beginner to program? EHaskins 2008-08-06T06:00:28Z 2009-04-07T13:34:20Z <p>I've had to work with several beginner (never wrote a line of code) programmers, and I'll be doing an after school workshop with high school students this fall. This is the closest thing I've got to documentation. It's still a work in progress, but I hope it helps.</p> <p>1) <b>FizzBuzz.</b> Start with command line programs. You can write some fun games, or tools, very quickly, and you learn all of the language features very quickly without having to learn the GUI tools first. These early apps should be simple enough that you won't need to use any real debugging tools to make them work.</p> <p>If nothing else things like FizzBuzz are good projects. Your first few apps should not have to deal with DBs, file system, configuration, ect. These are concepts which just confuse most people, and when you're just learning the syntax and basic framework features you really don't need more complexity.</p> <p>Some projects:</p> <ul> <li>Hello World!</li> <li>Take the year of my birth, and calculate my age (just (now - then) no month corrections). <i>(simple math, input, output)</i></li> <li>Ask for a direction(Up, down, left, right), then tell the user their fate (fall in a hole, find a cake, ect). <i>(Boolean logic)</i></li> <li>FizzBuzz, but count once every second. <i>(Loops, timers, and more logic)</i></li> <li>Depending on their age some really like an app which calls the users a random insult at some interval. <i>(Loops, arrays, timers, and random if you make the interval random)</i></li> </ul> <p>2) <b>Simple Project</b> Once they have a good grasp of language features, you can start a project(simple, fun games work good.). You should try to have the first project be able to be completed within 6-12 hours. Don't spend time to architect it early. Let them design it even if it sucks. If it falls apart, talk about what happened and why it failed, then pick another topic and start again.</p> <p>This is where you start introducing the debugging capabilities of your tools. Even if you can see the problem by reading the code you should teach them how to use the tools, and then show them how you could see it. That serves the dual purpose of teaching the debugging tools and teaching how to ID errors without tools.</p> <p>Once, or if, the project gets functional you can use it to introduce refactoring tools. Its good if you can then expand the project with some simple features which you never planned for. This usually means refactoring and significant debugging, since very few people write even half decent code their first time.</p> <p>Some projects:</p> <ul> <li>Hangman game</li> <li>Experimenting with robotics(<a href="http://www.vexlabs.com" rel="nofollow">Vex</a> and <a href="http://mindstorms.lego.com" rel="nofollow">Mindstorms</a> are options) </li> </ul> <p>3) <b>Real Project </b> Start a real project which may take some time. Use proper source control, and make a point to have a schedule. Run this project like a real project, if nothing else its good experience having to deal with the tools.</p> <p>Obviously you need to adjust this for each person. The most important thing I've found is to make even the first simple apps apply to what the person is interested in. </p> <p>Some projects:</p> <ul> <li>Tetris</li> <li>Text file based blog engine</li> <li>More advanced robotics work</li> </ul> http://stackoverflow.com/questions/202130/run-a-xna-compiled-game-from-dvd-or-cd-on-xbox-360/202372#202372 3 Answer by EHaskins for Run a XNA compiled game from DVD or CD on XBOX 360? EHaskins 2008-10-14T18:54:43Z 2009-03-11T11:00:17Z <p>XNA games must be copied to the 360 using the XNA game launcher. They can not be loaded off a CD/DVD.</p> <p>You can use other libraries on the 360, but they have to be compiled using the XBox's .net libraries. So unless you have access to source code, or are willing to decompile and change all references to framework libraries to Xbox ones and then remove any calls which don't exist on the 360, you shouldn't try.</p> http://stackoverflow.com/questions/31200/outlook-synchronization-on-multiple-machines 0 Outlook synchronization on multiple machines EHaskins 2008-08-27T20:36:00Z 2009-01-06T15:19:28Z <p><i>This isn't much of a programming question, but I'm sure I'm not the only person here who has this issue.</i></p> <p>Currently I have two machines with Outlook 2007. They both sync e-mail from Google Apps. One of the machines publishes my calendar to a secure server, which my other machine is subscribed to. The problem with this setup is that I have read-only calendar access on one of my machines, which sucks. Also soon I'll be upgrading to a smart-phone, so anything I do will also have to support that scenario.</p> <ol> <li>Is there a better way to handle Outlook synchronization without setting up an exchange server in my basement?</li> <li>If I have to setup Exchange, is it possible to make it pull e-mail, via IMAP, from Google Apps?</li> </ol> http://stackoverflow.com/questions/395292/what-potential-do-you-see-in-silverlight/395542#395542 2 Answer by EHaskins for What potential do you see in Silverlight? EHaskins 2008-12-27T22:51:25Z 2008-12-27T22:51:25Z <p>I don't see Silverlight becoming a Flash killer anytime soon. That said, Silverlight does provide a fantastic deployment model for WPF applications. I expect to see more line-of-business apps written for Silverlight than the amount of Silverlight content in publicly facing websites.</p> http://stackoverflow.com/questions/128687/how-to-setup-non-admin-development-in-visual-studio-2005-and-2003/385258#385258 1 Answer by EHaskins for How to setup non-admin development in Visual Studio 2005 and 2003 EHaskins 2008-12-22T00:36:34Z 2008-12-22T00:36:34Z <p>Use Vista, and take advantage or UAC, because that's UAC allows you to do. You can give VS full rights when needed, and the application/website limited rights.</p> <p>I'm running VS2008 on Vista with UAC enabled. I've only had one issue worth mentioning.</p> <p>I occasionally have weird file permission issues when I've run VS with elevated privileges then later run it without them. VS won't be able to delete the old build files, but if I delete them from Explorer its fine. Again, this only happens when switching between elevated and non-elevated permissions.</p> http://stackoverflow.com/questions/385077/vs-net-2003-and-vs-net-2008-co-existence/385126#385126 1 Answer by EHaskins for VS.NET 2003 and VS.NET 2008 co-existence EHaskins 2008-12-21T23:03:59Z 2008-12-21T23:03:59Z <p>I've run vs2003 and vs2008 simultaneously. I believe the worst case scenario for installing 2003 after 2008 would be needing to reinstall 2008. </p> <p>I would go ahead and try, but I wouldn't start unless I had most of a day to do it.</p> http://stackoverflow.com/questions/199483/mssql-command-like-0-9-wont-match-any-digit-between-0-and-9 0 MSSQL command LIKE [0-9] won't match any digit between 0 and 9 EHaskins 2008-10-13T23:53:02Z 2008-11-17T13:55:34Z <p>This is the constraint I have on the Customers table.</p> <pre><code>ALTER TABLE Customers ADD CONSTRAINT CN_CustomerPhone CHECK (Phone LIKE '([0-9][0-9][0-9]) [0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]') </code></pre> <p>Why does this fail?</p> <pre><code>INSERT INTO Customers (CustomerName, Address, City, State, Zip, Phone) VALUES ('Some Name','An Address', 'City goes here', 'WI', 12345, '(800) 555-1212') </code></pre> <p>With this error message.</p> <blockquote> <p>Msg 547, Level 16, State 0, Line 1 The INSERT statement conflicted with the CHECK constraint "CN_CustomerPhoneNo". The conflict occurred in database "Accounting", table "dbo.Customers", column 'Phone'. The statement has been terminated.</p> </blockquote> <p>I'm sure I'm missing something really simple, but I can't find it.</p> <p>I've tried simplifing the constraint to only 'Phone LIKE '[0-9]'' and inserting a single digit, but it still fails. WTF?</p> http://stackoverflow.com/questions/259613/how-big-are-various-clr-runtimes/259621#259621 2 Answer by EHaskins for How big are various CLR runtimes? EHaskins 2008-11-03T19:15:42Z 2008-11-03T19:15:42Z <p>You might find this site interesting.</p> <p><a href="http://www.hanselman.com/smallestdotnet/" rel="nofollow">http://www.hanselman.com/smallestdotnet/</a></p> http://stackoverflow.com/questions/210008/resources-for-kids-learning-c/210049#210049 1 Answer by EHaskins for Resources for Kids Learning C# EHaskins 2008-10-16T19:59:15Z 2008-10-16T19:59:15Z <p>Code Project is a good resource, but many of the sample are more complicated than you'd want to start with.</p> <p>For smaller sample apps, Microsoft released their <a href="http://msdn.microsoft.com/en-us/vs2005/aa718334.aspx" rel="nofollow">101 Samples for Visual Studio 2005</a></p> <p><a href="http://creators.xna.com/" rel="nofollow">XNA</a> is cool, but is somewhat complicated to get started with.</p> <p><a href="http://blogs.msdn.com/coding4fun/" rel="nofollow">Coding4Fun</a> is also good, but the amount of content isn't that huge.</p> http://stackoverflow.com/questions/202384/diagnosing-application-hang-in-a-production-net-desktop-program/202431#202431 1 Answer by EHaskins for Diagnosing application hang in a production .NET desktop program EHaskins 2008-10-14T19:08:39Z 2008-10-14T19:08:39Z <p>I would suggest adding more detailed logging around the calls you believe are the source of the problem. </p> <p>If you're on Vista you can use the a new Vista API to have Windows call into your code when your app crashes. This is what's happening when you see MS products like Office/IE say they are "Attempting to recover you data". </p> http://stackoverflow.com/questions/199483/mssql-command-like-0-9-wont-match-any-digit-between-0-and-9/199502#199502 1 Answer by EHaskins for MSSQL command LIKE [0-9] won't match any digit between 0 and 9 EHaskins 2008-10-14T00:00:38Z 2008-10-14T00:00:38Z <p>I'm an idiot, the field was declared as an nchar, and I didn't' take the padding spaces into account.</p> http://stackoverflow.com/questions/194976/an-alternative-to-vs-2008-designer-screen/195086#195086 1 Answer by EHaskins for An Alternative to VS 2008 Designer Screen EHaskins 2008-10-12T04:14:17Z 2008-10-12T04:14:17Z <p>I don't use any WYSIWYG editor for WebForms. I've found that there are no good WYSIWYG editors for HTML, let alone ASP.net. </p> <p>My suggestion is to learn enough HTML/CSS/ASP.net that you care code entirely without the WYSIWYG editor. If you can't or don't want to do this, then you'll just have to put up with a marginal editor.</p> http://stackoverflow.com/questions/135375/how-do-i-make-a-wpf-data-template-fill-the-entire-width-of-the-listbox/135951#135951 7 Answer by EHaskins for How do I make a WPF data template fill the entire width of the listbox? EHaskins 2008-09-25T20:45:33Z 2008-09-25T20:45:33Z <p>I also had to set</p> <pre><code>HorizontalContentAlignment="Stretch" </code></pre> <p>on the containing listbox.</p> http://stackoverflow.com/questions/135375/how-do-i-make-a-wpf-data-template-fill-the-entire-width-of-the-listbox 4 How do I make a WPF data template fill the entire width of the listbox? EHaskins 2008-09-25T19:18:44Z 2008-09-25T20:45:33Z <p>I have a listbox data template in WPF. I want one item to be tight against the left side of the listbox and another item to be tight against the right side, but I can't figure out how to do this.</p> <p>So far I have a grid with three columns, the left and right ones have content and the center is a placeholder with it's width set to "*". Where am I going wrong?</p> <p>EDIT: Here is the code:</p> <pre><code>&lt;DataTemplate x:Key="SmallCustomerListItem"&gt; &lt;Grid HorizontalAlignment="Stretch"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition/&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition/&gt; &lt;ColumnDefinition Width="*"/&gt; &lt;ColumnDefinition/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;WrapPanel HorizontalAlignment="Stretch" Margin="0"&gt; &lt;!--Some content here--&gt; &lt;TextBlock Text="{Binding Path=LastName}" TextWrapping="Wrap" FontSize="24"/&gt; &lt;TextBlock Text=", " TextWrapping="Wrap" FontSize="24"/&gt; &lt;TextBlock Text="{Binding Path=FirstName}" TextWrapping="Wrap" FontSize="24"/&gt; &lt;/WrapPanel&gt; &lt;ListBox ItemsSource="{Binding Path=PhoneNumbers}" Grid.Column="2" d:DesignWidth="100" d:DesignHeight="50" Margin="8,0" Background="Transparent" BorderBrush="Transparent" IsHitTestVisible="False" HorizontalAlignment="Stretch"/&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; </code></pre> http://stackoverflow.com/questions/118725/best-way-to-enable-desktop-access-to-pcs-on-a-remote-network/118736#118736 0 Answer by EHaskins for Best way to enable desktop access to PCs on a remote network EHaskins 2008-09-23T02:01:39Z 2008-09-23T02:01:39Z <p>If you only need access for one user/computer at a time, you can forward RDP (3389) then once connected to that machine you can RDP into any other machine on that network. </p> <p>Just to be clear you have a connection to a publicly accessible machine, which has an RDP connection to another machine on the network.</p> <p>This works well, but you can only have one user at a time.</p> <p>Depending on the number of machines/security policies, you could use Live Mesh.</p> http://stackoverflow.com/questions/118635/what-are-the-must-have-features-for-a-xml-based-gui-language/118708#118708 0 Answer by EHaskins for What are the "must have" features for a XML based GUI language EHaskins 2008-09-23T01:52:05Z 2008-09-23T01:52:05Z <p>You should have specified whether you mean web or rich client, but either way take a look at XAML/WPF. If you're anti-MS, then look at Moonlight, the Mono implementation of SilverLight.</p> http://stackoverflow.com/questions/106329/how-do-you-programmatically-identify-the-number-of-references-to-a-method-with-c/106352#106352 1 Answer by EHaskins for How do you programmatically identify the number of references to a method with C# EHaskins 2008-09-19T23:21:18Z 2008-09-19T23:21:18Z <p>I beleve you can do that with <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a>, but I've never used it.</p> http://stackoverflow.com/questions/1285798/is-it-possible-to-change-a-console-windows-icon-from-net Comment by EHaskins on Is it possible to change a console window's icon from .net? EHaskins 2009-08-17T01:21:55Z 2009-08-17T01:21:55Z application icon http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c/1054098#1054098 Comment by EHaskins on Randomly generated hexadecimal number in C# EHaskins 2009-06-28T04:48:37Z 2009-06-28T04:48:37Z @spender is correct, for instance many GUIDs contain the MAC address of the PC generating them. http://stackoverflow.com/questions/557632/free-portable-database/557659#557659 Comment by EHaskins on Free portable database EHaskins 2009-06-11T18:32:00Z 2009-06-11T18:32:00Z @Arafangion a. If you're running Windows you are either using a valid license, or a f***ing pirate, either way you first point doesn't matter. b. The redist requires SQL CE remain under the same license, your code may be any other license, includeing GPL. c. You and @PhiLho have both shown your ignorance of this product. Please refrain from commenting on subjects you are not prepared to discuss intelegently. http://stackoverflow.com/questions/401816/how-can-i-make-a-click-once-deployed-app-run-at-startup/846359#846359 Comment by EHaskins on How can I make a Click-once deployed app run at startup? EHaskins 2009-05-11T06:21:22Z 2009-05-11T06:21:22Z Good to know. Thanks. http://stackoverflow.com/questions/263764/windows-7-on-a-virtual-machine/452093#452093 Comment by EHaskins on Windows 7 on a virtual machine EHaskins 2009-01-16T22:26:10Z 2009-01-16T22:26:10Z I've got the same config, and it works great. http://stackoverflow.com/questions/263764/windows-7-on-a-virtual-machine/263780#263780 Comment by EHaskins on Windows 7 on a virtual machine EHaskins 2009-01-16T22:25:03Z 2009-01-16T22:25:03Z I found that under Virtual PC, with 1024mb of RAM, on a 7200rpm drive shared with the main machine, it ran BETTER than Vista on a comparable configuration. http://stackoverflow.com/questions/370839/why-is-my-typed-data-template-not-being-applied/372014#372014 Comment by EHaskins on Why is my typed data template not being applied? EHaskins 2008-12-30T22:14:11Z 2008-12-30T22:14:11Z I had same issue. This solved it. Thanks! http://stackoverflow.com/questions/397257/force-textblock-to-wrap-in-wpf-listbox/397287#397287 Comment by EHaskins on Force textblock to wrap in WPF listbox EHaskins 2008-12-29T08:48:01Z 2008-12-29T08:48:01Z That worked. Thanks! http://stackoverflow.com/questions/394521/ensuring-a-program-written-for-32-bit-windows-is-compatible-with-64-bit-windows/394533#394533 Comment by EHaskins on Ensuring a Program Written for 32-bit Windows is Compatible with 64-bit Windows EHaskins 2008-12-28T01:24:20Z 2008-12-28T01:24:20Z @Die in Sente WoW does do emulation on IA-64 processors. Just not on x64. So this answer is technically correct, but on x64 machines WoW is more of a redirection layer than an emulation layer. http://stackoverflow.com/questions/394521/ensuring-a-program-written-for-32-bit-windows-is-compatible-with-64-bit-windows/395111#395111 Comment by EHaskins on Ensuring a Program Written for 32-bit Windows is Compatible with 64-bit Windows EHaskins 2008-12-28T01:20:50Z 2008-12-28T01:20:50Z @Joseph beat me to it... http://stackoverflow.com/questions/394521/ensuring-a-program-written-for-32-bit-windows-is-compatible-with-64-bit-windows/395111#395111 Comment by EHaskins on Ensuring a Program Written for 32-bit Windows is Compatible with 64-bit Windows EHaskins 2008-12-28T01:19:53Z 2008-12-28T01:19:53Z @biozinc on x64 processors WoW does NO emulation. x64 processors are capable of running x86 and x64 code simultaneously. It provides 32 to 64 bit windows API call translation, and manages when the processor is in 32 or 64 bit mode. The Wiki article has sources: <a href="http://en.wikipedia.org/wiki/WOW64" rel="nofollow">en.wikipedia.org/wiki/WOW64</a> http://stackoverflow.com/questions/387141/how-can-i-check-to-see-if-system-is-in-standby-mode/387155#387155 Comment by EHaskins on How can I check to see if system is in standby mode? EHaskins 2008-12-22T21:12:58Z 2008-12-22T21:12:58Z @dennisV you might be able to detect it by checking if the system time jumps ahead, but it would be a hack at best. http://stackoverflow.com/questions/380274/cs-edge-over-vb/380284#380284 Comment by EHaskins on C#'s edge over VB EHaskins 2008-12-19T07:33:54Z 2008-12-19T07:33:54Z @Jeremy Rudd &quot;credibility&quot; in the sense that there are a large number of programmers who believe that if a language doesn't have curly brackets and semi-colons then it must be a &quot;toy&quot; language. If you can't tell, I disagree. http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install/344698#344698 Comment by EHaskins on As a developer, what changes do you make to a vanilla Windows install ? EHaskins 2008-12-11T04:40:33Z 2008-12-11T04:40:33Z Notepad++ and Paint.net +1 http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install/344488#344488 Comment by EHaskins on As a developer, what changes do you make to a vanilla Windows install ? EHaskins 2008-12-11T04:39:42Z 2008-12-11T04:39:42Z FYI the vista start menu search is available in the classic menu, but I still leave aero enabled since I like the screen shots when I alt+tab.