User demoncodemonkey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:44:07Z http://stackoverflow.com/feeds/user/61697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856430/problem-with-mfc-diagnostics/1856739#1856739 1 Answer by demoncodemonkey for problem with MFC Diagnostics demoncodemonkey 2009-12-06T21:48:54Z 2009-12-06T21:48:54Z <p>From <a href="http://msdn.microsoft.com/en-us/library/zwh44bdy%28VS.80%29.aspx" rel="nofollow">here</a> it shows that DumpAllObjectsSince() should be called on the CMemoryState object you called Checkpoint() on.</p> <p>So your code should be:</p> <pre><code> { TRACE( "Memory leaked!\n" ); diffMemState.DumpStatistics(); //diffMemState.DumpAllObjectsSince(); oldMemState.DumpAllObjectsSince(); } </code></pre> http://stackoverflow.com/questions/1813758/cmfcribbonedit-does-not-get-focus/1813940#1813940 1 Answer by demoncodemonkey for CMFCRibbonEdit does not get focus. demoncodemonkey 2009-11-28T22:13:56Z 2009-11-28T22:13:56Z <p>Have you added an update handler for that ribbon element ID?</p> <p>Check the <a href="http://msdn.microsoft.com/en-us/library/bb982410.aspx" rel="nofollow">RibbonGadgets</a> and <a href="http://msdn.microsoft.com/en-us/library/bb984334.aspx" rel="nofollow">MSOffice2007Demo</a> samples in the MFC Feature Pack to see how they do it.</p> <p>The RibbonGadgets one will show you the exact code you need to use in order to add an element of the specified type to your ribbon.</p> http://stackoverflow.com/questions/1487231/measuring-application-startup-performance 0 Measuring application startup performance demoncodemonkey 2009-09-28T14:06:04Z 2009-11-17T22:17:36Z <p>I'm using C++/CLI on Windows. It's an MFC app built with /clr.</p> <p>I want to test how long it takes my application to start up. The first time it took 10s, but subsequently it took 4s, 4s, 5s. I'm assuming this is due to Windows caching the DLLs.</p> <p>Is there some tool that will allow me to remove a directory from the cache, so that my test conditions are the same each time? I don't want to have to reboot between tests :)</p> http://stackoverflow.com/questions/1745693/get-text-width-in-mfc/1745758#1745758 3 Answer by demoncodemonkey for Get text width in MFC demoncodemonkey 2009-11-17T00:15:44Z 2009-11-17T00:30:28Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/z7e878zz%28VS.80%29.aspx" rel="nofollow">CDC::GetTextExtent</a> to calculate the width of text in a certain font. Use <a href="http://msdn.microsoft.com/en-us/library/71eseab0%28VS.80%29.aspx" rel="nofollow">CWnd::GetDC</a> to get the Device Context from the control displaying the text.</p> http://stackoverflow.com/questions/1728832/how-to-create-new-command-in-visual-studio/1728994#1728994 1 Answer by demoncodemonkey for How to create new command in visual studio ? demoncodemonkey 2009-11-13T12:39:20Z 2009-11-13T12:55:02Z <p>Those commands are known as "aliases", and yes you can add your own ones.</p> <p>The one you want is called <code>Edit.GoToDefinition</code></p> <p>So to register it you would type this:</p> <pre><code>&gt;alias gotodef Edit.GoToDefinition </code></pre> <p>and then to use it, type:</p> <pre><code>&gt;gotodef TextBox </code></pre> <p>See <a href="http://msdn.microsoft.com/en-us/library/xasxzd71.aspx" rel="nofollow">here</a> for details.</p> http://stackoverflow.com/questions/1380219/how-to-force-the-build-to-be-out-of-date-when-a-text-file-is-modified 1 How to force the build to be out of date, when a text file is modified? demoncodemonkey 2009-09-04T16:16:15Z 2009-11-09T11:00:05Z <p><strong>The Scenario</strong><br /> My project has a post-build phase set up to run a batch file, which reads a text file "version.txt". The batch file uses the information in version.txt to inject the DLL with a version block using <a href="http://www.codeproject.com/KB/install/VerPatch.aspx" rel="nofollow">this tool</a>.</p> <p>The version.txt is included in my project to make it easy to modify. It looks a bit like this:</p> <pre><code>@set #Description="TankFace Utility Library" @set #FileVersion="0.1.2.0" @set #Comments="" </code></pre> <p>Basically the batch file renames this file to version.bat, calls it, then renames it back to version.txt afterwards.</p> <p><strong>The Problem</strong><br /> When I modify version.txt (e.g. to increment the file version), and then press F7, the build is not seen as out-of-date, so the post-build step is not executed, so the DLL's version doesn't get updated.</p> <p>I really want to include the .txt file as an input to the build, but without anything actually trying to use it.</p> <p>If I #include the .txt file from a CPP file in the project, the compiler fails because it obviously doesn't understand what "@set" means.</p> <p>If I add /* ... */ comments around the @set commands, then the batch file has some syntax errors but eventually succeeds. But this is a poor solution I think.</p> <p><strong>So... how would you do it?</strong></p> http://stackoverflow.com/questions/1688436/visual-studio-2008-software-assurance-to-2010/1692356#1692356 2 Answer by demoncodemonkey for visual studio 2008 software assurance to 2010 demoncodemonkey 2009-11-07T07:51:12Z 2009-11-07T07:51:12Z <p>If I were you I'd wait until VS2010 is released (March 22 2010) before I bought anything.</p> <p>You can use the <a href="http://www.microsoft.com/visualstudio/en-us/try/default.mspx" rel="nofollow">VS2010 beta 2</a> to get things up and running until then.</p> <p>The beta even includes a <a href="http://blogs.msdn.com/jeffbe/archive/2009/10/19/going-live-with-visual-studio-2010-beta-2.aspx" rel="nofollow">"go-live" license</a> so you can deploy your product immediately, if you're really desperate.</p> http://stackoverflow.com/questions/1685943/catching-enter-keypress-from-a-ccombobox/1686433#1686433 0 Answer by demoncodemonkey for Catching Enter Keypress from a CComboBox demoncodemonkey 2009-11-06T09:24:27Z 2009-11-06T09:24:27Z <p><a href="http://www.codeproject.com/KB/combobox/combobox%5Ftut.aspx" rel="nofollow">Here</a> is some information you might find useful:</p> <blockquote> <p>The <code>ENTER</code> key, by default, is only processed by the combo box when the drop list is open, and in this case it has the same effect as a mouse click and makes the selection. A <strong>Simple</strong> combo box does not process the <code>ENTER</code> key at all and is passed to the parent dialog. If you wish to handle the <code>ENTER</code> key in any other way the combo box will need to be subclassed and handler written for the purpose. You may like to check out <a href="http://www.codeproject.com/KB/combobox/combocompletion.aspx" rel="nofollow">Implementing an autocompleting Combobox - By Chris Maunder</a> as a starting point to which the handler can be added.</p> </blockquote> http://stackoverflow.com/questions/1557189/what-features-would-you-like-added-changed-in-the-net-framework 5 What features would you like added/changed in the .NET Framework? demoncodemonkey 2009-10-12T22:04:10Z 2009-11-04T14:40:53Z <p>Over the years I have found myself being limited by what's available in the .NET framework, and having to work-around the stuff that isn't there.<br /> This seems ludicrous to me because there are so many controls available on the internet, and us developers always seem to be solving the same problems over and over.</p> <p>For example I recently needed to use a tree-list control. But because there isn't one available in the .NET framework, I had to either make it myself or use a 3rd party version.</p> <p>Imagine there was some way of submitting a control or piece of code to MS so that they could try/test/tweak it and make it good enough to include in the next version of the framework.</p> <p>If this could happen,</p> <p><strong>What would be your first request for the next version of the .NET framework?</strong></p> http://stackoverflow.com/questions/1557189/what-features-would-you-like-added-changed-in-the-net-framework/1674168#1674168 0 Answer by demoncodemonkey for What features would you like added/changed in the .NET Framework? demoncodemonkey 2009-11-04T14:40:53Z 2009-11-04T14:40:53Z <p>I want a ReadOnlyDictionary.</p> http://stackoverflow.com/questions/1667975/what-message-should-my-mfc-dialog-control-receive-before-i-can-modify-it/1669887#1669887 0 Answer by demoncodemonkey for What message should my MFC dialog control receive before I can modify it? demoncodemonkey 2009-11-03T20:18:03Z 2009-11-03T20:18:03Z <ol> <li>Check your messagemap is set up correctly, and definitely contains WM_CREATE.</li> <li>Check your OnCreate function signature is declared correctly.</li> <li>Use ASSERT in your OnCreate instead of a breakpoint<br /> (maybe it's getting there but skipping the breakpoint)</li> <li>Try to isolate the problem using a brand new application, then post your code if it still happens.</li> </ol> <p>You might also want to follow some of <a href="http://www.functionx.com/visualc/Lesson02.htm" rel="nofollow">these tutorials</a>.</p> http://stackoverflow.com/questions/1644304/will-the-scenic-ribbon-ever-be-supported-by-the-mfc-feature-pack 1 Will the Scenic Ribbon ever be supported by the MFC Feature Pack? demoncodemonkey 2009-10-29T14:56:28Z 2009-10-29T17:36:00Z <p>My team has spent a long time developing a nice UI using the ribbon included in the VS2008 MFC Feature Pack.</p> <p>Now that Windows 7 is out and the look and feel of the ribbon has changed, my application looks out of date already, and it hasn't even been released yet :/</p> <p>I want the look and feel of the Windows 7 ribbon ("scenic ribbon") ideally without changing anything - does anyone know whether there will be an update to the feature pack which will solve this?</p> <p>I can't move to using the Windows 7 SDK ribbon, because I need to support XP, and the 7 SDK only supports 7 and Vista.</p> <p>The only alternative I can think of is to go for a 3rd party library such as <a href="http://www.bcgsoft.com/featuretour/tour256.htm" rel="nofollow">BCGControlBar Pro</a> or <a href="http://www.prof-uis.com/elegant-ribbon/controls-framework-overview.aspx" rel="nofollow">Prof-UIS Elegant Ribbon</a>, both of which I don't mind paying for but it's the amount of rework that's the issue (presumably the BCG one would be the easiest to migrate to, as the MFC Feature Pack ribbon is based on that one).</p> http://stackoverflow.com/questions/1644304/will-the-scenic-ribbon-ever-be-supported-by-the-mfc-feature-pack/1645371#1645371 2 Answer by demoncodemonkey for Will the Scenic Ribbon ever be supported by the MFC Feature Pack? demoncodemonkey 2009-10-29T17:36:00Z 2009-10-29T17:36:00Z <p><a href="http://blogs.msdn.com/vcblog/archive/2009/10/01/ribbon-designer.aspx" rel="nofollow">This blog</a> shows that in VS2010 the MFC ribbon will have a "Windows 7" style.</p> <p>So I guess I just need to wait for VS2010. Result!</p> http://stackoverflow.com/questions/1642021/resources-in-a-static-lib-file-mfc/1642165#1642165 0 Answer by demoncodemonkey for Resources in a static lib file - MFC demoncodemonkey 2009-10-29T07:52:26Z 2009-10-29T07:52:26Z <p>Make sure all your resource IDs are unique.</p> http://stackoverflow.com/questions/1636286/debug-vs-release-dll-size/1636436#1636436 0 Answer by demoncodemonkey for debug vs. release dll size demoncodemonkey 2009-10-28T10:36:11Z 2009-10-28T10:36:11Z <p>You mean C# not .NET. Also it depends on your project.</p> <p>I have one C++/CLI DLL which is 54K in release and 94K in debug,<br /> and another which is 88KB in release and 124KB in debug.</p> <p>My C++/CLI EXE which includes MFC is 471KB in release and 4446KB in debug!</p> <p>And then my C# DLL is 135KB in both debug and release.</p> http://stackoverflow.com/questions/1631364/supporting-multi-monitors 3 Supporting multi-monitors demoncodemonkey 2009-10-27T14:53:01Z 2009-10-28T09:11:37Z <p>I want to provide multi-monitor support in my application.</p> <p>In the past I have had the simplistic view that multi-monitor support is simply the lack of open multi-monitor related bugs. If it seems to work on a multi-monitor setup, then it supports multi-monitors, right?</p> <p>But I would like to create some clear requirements about this.</p> <p>What are the basic requirements I need to adhere to, in order to satisfy most users' expectations so that they might say "yes this application supports multi-monitors"?</p> <p>For example an obvious requirement is that all windows/messageboxes/tooltips etc must open on the same monitor that the application is on. And any children of those windows must open on the same monitor as their parent.</p> <p>Can you think of any more? Are there any guidelines about this anywhere?</p> http://stackoverflow.com/questions/1613706/do-i-need-to-use-dynamiccast-when-calling-a-function-that-accepts-the-base-class 1 Do I need to use dynamic_cast when calling a function that accepts the base class? demoncodemonkey 2009-10-23T14:07:30Z 2009-10-23T14:18:41Z <p>I have some classes like this:</p> <pre><code>interface class IA { }; interface class IB { }; public ref class C : public IA, public IB { }; public ref class D { void DoSomething(IA^ aaa) { } void Run() { C^ bob = gcnew C(); DoSomething(dynamic_cast&lt;IA^&gt;(bob)); // #1 DoSomething(bob); // #2 } }; </code></pre> <p>At the moment I always try to use dynamic casting when calling such a function, (the #1 above).<br /> However it does make the code quite ugly, so I want to know if it is actually necessary.</p> <p>Do you use dynamic_cast in this way? If so what is the main reason?</p> http://stackoverflow.com/questions/1593349/vs2008-win32-project-defaults-remove-default-precompiled-headers/1593592#1593592 4 Answer by demoncodemonkey for VS2008 win32 project defaults - remove default precompiled headers demoncodemonkey 2009-10-20T10:04:07Z 2009-10-20T10:04:07Z <p>You could make your own template to do this, or you could edit the default one. The relevant wizard can be found here:</p> <pre><code>C:\Program Files\Microsoft Visual Studio 9.0\VC\VCWizards\AppWiz\Generic\Application </code></pre> <p>Obviously if you're gonna edit the default template, backup the folder first.</p> <p>I'll show you how to get started on editing it.</p> <p>First of all you need to tell the wizard script that you don't want precompiled headers. Edit this file in your favourite text editor:</p> <pre><code>\scripts\1033\default.js </code></pre> <p>Find this line:</p> <pre><code>var Pch = wizard.FindSymbol("PRE_COMPILED_HEADER"); </code></pre> <p>and comment out some of the lines below it like this:</p> <pre><code>// if ((strAppType == "LIB" || ((strAppType == "CONSOLE") &amp;&amp; // !wizard.FindSymbol("SUPPORT_MFC") &amp;&amp; !wizard.FindSymbol("SUPPORT_ATL"))) &amp;&amp; !Pch) { AddFilesToProjectWithInfFile(selProj, strProjectName); SetNoPchSettings(selProj); } // else // { // AddFilesToProjectWithInfFile(selProj, strProjectName); // SetCommonPchSettings(selProj); // } </code></pre> <p>Now open this file:</p> <pre><code>\templates\1033\Templates.inf </code></pre> <p>and find the first occurrence of <code>[!else]</code> and delete these 3 lines below it:</p> <pre><code>stdafx.h targetver.h stdafx.cpp </code></pre> <p>This will give you a project without stdafx.cpp/.h or targetver.h, and the CPP file will not try to use a PCH. However it won't build because we haven't added any #includes to the appropriate header files. I'll leave that for you to figure out :)<br /> (you can edit the files that get generated automatically by modifying the files in <code>\templates\1033</code>)</p> http://stackoverflow.com/questions/1593125/visual-studio-just-in-time-debugging-annoyances/1593141#1593141 0 Answer by demoncodemonkey for Visual Studio Just-In-Time Debugging Annoyances demoncodemonkey 2009-10-20T08:18:41Z 2009-10-20T08:18:41Z <p>Sounds like it can't find the debug info.</p> <p>Try copying the PDB files to your output directory.</p> http://stackoverflow.com/questions/1593043/what-kind-of-flash-player-does-the-following-site-uses/1593127#1593127 2 Answer by demoncodemonkey for What kind of flash player does the following site uses? demoncodemonkey 2009-10-20T08:12:39Z 2009-10-20T08:12:39Z <p>Here's a little tip for you.<br /> Right-click and select View Page Source.<br /> It shows you how the web page works!</p> http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstall/1591367#1591367 1 Answer by demoncodemonkey for Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall? demoncodemonkey 2009-10-19T21:56:43Z 2009-10-19T21:56:43Z <p>In the Customize dialog, on the Toolbars tab, there's a Reset button. Try this first.</p> <p>Then there's a [Window->Reset Window Layout] command. Try this second.</p> <p>If it's still the same you could try the following command (as specified <a href="http://msdn.microsoft.com/en-us/library/ms241273%28VS.80%29.aspx" rel="nofollow">here</a>):</p> <pre><code>devenv.exe /resetsettings </code></pre> <p>Failing that you would have to try deleting some of the VS stored data files, in here:</p> <pre><code>%appdata%\Microsoft\VisualStudio\9.0 </code></pre> <p>however that could be risky and is your last resort.</p> <p>If it still happens then you should reinstall.</p> <p>If it still happens after reinstalling then you should reformat ;)</p> http://stackoverflow.com/questions/1569481/stepping-through-code-is-slow/1575301#1575301 1 Answer by demoncodemonkey for Stepping through code is slow demoncodemonkey 2009-10-15T21:49:26Z 2009-10-15T21:49:26Z <p>This happened to one of my colleagues and cleaning the solution didn't work. He fixed it by deleting the source directory and getting a fresh checkout from subversion.<br /> (which was lucky for him because he was this close to reinstalling VS)</p> <p>So reading into that, I guess there was some obscure output file that was causing the slowdown.</p> <p>You could try copying your solution and all your source files to a different directory, leaving behind all the bin and obj files, and seeing if that makes any difference.</p> <p>If it still happens, create a brand new solution and see if it's still slower than your friend.<br /> If so then a VS reinstall might be in order. And I feel your pain, that's at least 3hrs down the swanny.</p> http://stackoverflow.com/questions/1574605/how-to-convert-an-ascii-value-into-a-character-in-net 2 How to convert an ASCII value into a character in .NET demoncodemonkey 2009-10-15T19:43:12Z 2009-10-15T20:18:04Z <p>There are a million posts on here on how to convert a character to its ASCII value.<br /> Well I want the complete opposite.<br /> I have an ASCII value stored as an int and I want to display its ASCII character representation in a string.</p> <p>i.e. please display the code to convert the int <code>65</code> to <code>A</code>.</p> <p>What I have currently is <code>String::Format("You typed '{0}'", (char)65)</code></p> <p>but this results in <code>"You typed '65'"</code> whereas I want it to be <code>"You typed 'A'"</code></p> <p>I am using C++/CLI but I guess any .NET language would do...</p> <p><em>(edited post-humously to improve the question for future googlers)</em></p> http://stackoverflow.com/questions/1574358/how-to-blank-files-in-batch/1574501#1574501 0 Answer by demoncodemonkey for How to blank files in batch demoncodemonkey 2009-10-15T19:24:40Z 2009-10-15T19:24:40Z <p>You could make the batch file take the filter and then it's much more useful.</p> <pre><code>@for %%i in (%1) do cd.&gt;%%i </code></pre> <p>Usage (if you call it <em>empty.bat</em>):</p> <pre><code>empty *.c </code></pre> http://stackoverflow.com/questions/1557189/what-features-would-you-like-added-changed-in-the-net-framework/1560819#1560819 0 Answer by demoncodemonkey for What features would you like added/changed in the .NET Framework? demoncodemonkey 2009-10-13T15:03:10Z 2009-10-13T15:03:10Z <ol> <li><p>I want a tree-list view, i.e. a list-view which can have one of the columns be a tree-view. Or a tree-view with columns effectively. I've seen countless versions of this on the net and in many apps, and they all look slightly different.</p></li> <li><p>I want a full ribbon control which adheres to the current MS ribbon look and feel. For instance the l+f of the Win7 ribbon is completely different to the one I've been implementing from the MFC Feature Pack in VS2008 for the past year :/</p></li> </ol> <p>It would satisfy my OCD if there was more consistency in this world :)</p> http://stackoverflow.com/questions/1489795/how-to-edit-a-watch-expression-in-visual-studio-2008-with-the-keyboard/1498567#1498567 0 Answer by demoncodemonkey for How to edit a watch expression in visual studio 2008 with the keyboard? demoncodemonkey 2009-09-30T14:44:18Z 2009-09-30T14:44:18Z <p>This just works for me.</p> <p>F2 starts editing. It also starts editing when I just start typing any text. I'm using VS2008 C++/CLI.</p> http://stackoverflow.com/questions/1492974/where-can-i-set-the-initial-value-of-currentuiculture-in-windows-xp 1 Where can I set the initial value of CurrentUICulture in Windows XP? demoncodemonkey 2009-09-29T14:39:01Z 2009-09-29T14:58:26Z <p>I'm trying to make my application support multiple languages. I've made some satellite assemblies and now I want to test what the app will look like when run on a French machine, for example.</p> <p>In [Control Panel->Regional And Language Options] I can select French (France) in the Regional Options tab, and I can select French (France) in the Advanced tab.</p> <p>But this is not enough to make my application think it's French.</p> <p>If I add this code to the start of my main function,</p> <pre><code>[STAThreadAttribute] int main(array&lt;System::String ^&gt; ^args) { CultureInfo^ ci1 = Thread::CurrentThread-&gt;CurrentCulture; CultureInfo^ ci2 = Thread::CurrentThread-&gt;CurrentUICulture; </code></pre> <p>then ci1->Name is <code>fr-FR</code> but ci2->Name is <code>en-US</code>.</p> <p>And unfortunately for me, for the French satellite assembly to be used, the CurrentUICulture is the one that needs to be <code>fr-FR</code>.</p> <p>I don't want to set the CurrentUICulture to the same one as the CurrentCulture in code - I want to change the default one using the Control Panel or something.</p> <p>I've seen many posts on t'internet about how to detect an event when the CurrentUICulture is changed, just nothing that tells me how to change it!</p> http://stackoverflow.com/questions/1492760/passing-a-reference-of-an-handle-in-c-cli/1492870#1492870 1 Answer by demoncodemonkey for Passing a reference of an handle in C++/CLI demoncodemonkey 2009-09-29T14:22:11Z 2009-09-29T14:22:11Z <p>It just works for me...</p> <pre><code>ref class bob { }; ref class bill : public bob { }; void DeleteX( bob ^% x ) { if( x != nullptr ) { delete x; x = nullptr; } } [STAThreadAttribute] int main(array&lt;System::String ^&gt; ^args) { bob^ one = gcnew bill(); DeleteX(one); System::Diagnostics::Trace::Assert(one == nullptr); //did not trigger </code></pre> http://stackoverflow.com/questions/1486061/showing-solution-path-in-vs2008-window-name/1486115#1486115 0 Answer by demoncodemonkey for Showing solution path in VS2008 window name demoncodemonkey 2009-09-28T09:13:54Z 2009-09-28T09:13:54Z <p>You could use the <a href="http://www.autohotkey.com/docs/commands/WinSetTitle.htm" rel="nofollow">WinSetTitle</a> command of AutoHotkey to set the title of any window.</p> <p>So technically you could make a script to open a new instance of VS2008, load a specified solution, and set the window's title accordingly.</p> <p>(however I don't know if VS2008 might reset the window title after some operation...)</p> http://stackoverflow.com/questions/1476777/how-to-map-a-global-key-to-refresh/1476936#1476936 2 Answer by demoncodemonkey for How to map a global key to refresh? demoncodemonkey 2009-09-25T12:05:18Z 2009-09-25T12:05:18Z <p><a href="http://www.autohotkey.com" rel="nofollow">Autohotkey</a></p> http://stackoverflow.com/questions/1813758/cmfcribbonedit-does-not-get-focus/1814055#1814055 Comment by demoncodemonkey on CMFCRibbonEdit does not get focus. demoncodemonkey 2009-11-28T23:44:54Z 2009-11-28T23:44:54Z So please can you accept my answer then :D http://stackoverflow.com/questions/865780/naming-enum-types/866032#866032 Comment by demoncodemonkey on Naming enum types demoncodemonkey 2009-11-27T13:52:58Z 2009-11-27T13:52:58Z <a href="http://wordnetweb.princeton.edu/perl/webwn" rel="nofollow">wordnetweb.princeton.edu/perl/webwn</a> http://stackoverflow.com/questions/1487231/measuring-application-startup-performance/1752265#1752265 Comment by demoncodemonkey on Measuring application startup performance demoncodemonkey 2009-11-17T22:57:14Z 2009-11-17T22:57:14Z OK you kicked me, it's all cool now :D http://stackoverflow.com/questions/1487231/measuring-application-startup-performance/1487348#1487348 Comment by demoncodemonkey on Measuring application startup performance demoncodemonkey 2009-11-17T22:56:17Z 2009-11-17T22:56:17Z Thanks, I did end up making a VM to avoid rebooting, but forgot to mark this as the accepted answer until now :) http://stackoverflow.com/questions/1130864/msvc-c-enable-auto-build-when-f5-is-pressed-and-source-is-out-of-date/1130871#1130871 Comment by demoncodemonkey on [msvc,c++] Enable auto-build when F5 is pressed and source is out-of-date demoncodemonkey 2009-11-12T15:04:22Z 2009-11-12T15:04:22Z I changed some of my dependencies around and suddenly F5 for build+run stopped working for me. Your last paragraph was what I was looking for. Thanks! http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/269903#269903 Comment by demoncodemonkey on Most Astonishing Violation of the Principle of Least Astonishment demoncodemonkey 2009-11-10T16:02:03Z 2009-11-10T16:02:03Z Fixed in Win7 - it does as much as it can then tells you at the end what went wrong and what should it do. http://stackoverflow.com/questions/851882/easy-way-to-build-android-ui/868381#868381 Comment by demoncodemonkey on Easy way to build Android UI? demoncodemonkey 2009-10-30T11:57:38Z 2009-10-30T11:57:38Z &quot;it crashes sometimes, but thats ok&quot; - that's my mantra too ;) http://stackoverflow.com/questions/1631364/supporting-multi-monitors Comment by demoncodemonkey on Supporting multi-monitors demoncodemonkey 2009-10-27T16:06:38Z 2009-10-27T16:06:38Z Thanks, you're right and I've updated that part of the question. http://stackoverflow.com/questions/1613706/do-i-need-to-use-dynamiccast-when-calling-a-function-that-accepts-the-base-class Comment by demoncodemonkey on Do I need to use dynamic_cast when calling a function that accepts the base class? demoncodemonkey 2009-10-23T14:17:06Z 2009-10-23T14:17:06Z Done (although I assumed it would have the same behaviour...) http://stackoverflow.com/questions/1590809/how-can-i-provide-a-more-robust-link-between-svn-commits-and-tickets/1591061#1591061 Comment by demoncodemonkey on How can I provide a more robust link between SVN commits and tickets demoncodemonkey 2009-10-20T23:21:12Z 2009-10-20T23:21:12Z Actually there is no problem with a commit comment closing a trac ticket. We do it all the time. Example at <a href="http://dancingpenguinsoflight.com/2009/01/updating-trac-tickets-in-svn-commits/" rel="nofollow">dancingpenguinsoflight.com/2009/01/&hellip;</a> http://stackoverflow.com/questions/1593211/enable-ribbon-control Comment by demoncodemonkey on enable ribbon control demoncodemonkey 2009-10-20T09:02:49Z 2009-10-20T09:02:49Z Dude, where's the question? http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstall Comment by demoncodemonkey on Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall? demoncodemonkey 2009-10-19T21:57:25Z 2009-10-19T21:57:25Z Because reinstalling VS takes the best part of 3hrs http://stackoverflow.com/questions/1569481/stepping-through-code-is-slow/1569607#1569607 Comment by demoncodemonkey on Stepping through code is slow demoncodemonkey 2009-10-15T21:50:30Z 2009-10-15T21:50:30Z NCB files are only created for C++ projects, however yes that was my first thought too. I used to have a batch file in my windows startup folder to delete that stupid file. http://stackoverflow.com/questions/1574605/how-to-convert-an-ascii-value-into-a-character-in-net Comment by demoncodemonkey on How to convert an ASCII value into a character in .NET demoncodemonkey 2009-10-15T21:08:19Z 2009-10-15T21:08:19Z @Jason one of the most important preconditions of posthumous editing is that you have to be dead. However I do not recommend you try to test this out! :D (of course I meant post-answeredly but that's not a word) http://stackoverflow.com/questions/1574605/how-to-convert-an-ascii-value-into-a-character-in-net/1574621#1574621 Comment by demoncodemonkey on How to convert an ASCII value into a character in .NET demoncodemonkey 2009-10-15T20:13:36Z 2009-10-15T20:13:36Z And we have a winner! Thanks :)