User demoncodemonkey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T00:44:07Zhttp://stackoverflow.com/feeds/user/61697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856430/problem-with-mfc-diagnostics/1856739#18567391Answer by demoncodemonkey for problem with MFC Diagnosticsdemoncodemonkey2009-12-06T21:48:54Z2009-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#18139401Answer by demoncodemonkey for CMFCRibbonEdit does not get focus.demoncodemonkey2009-11-28T22:13:56Z2009-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-performance0Measuring application startup performancedemoncodemonkey2009-09-28T14:06:04Z2009-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#17457583Answer by demoncodemonkey for Get text width in MFCdemoncodemonkey2009-11-17T00:15:44Z2009-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#17289941Answer by demoncodemonkey for How to create new command in visual studio ?demoncodemonkey2009-11-13T12:39:20Z2009-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>>alias gotodef Edit.GoToDefinition
</code></pre>
<p>and then to use it, type:</p>
<pre><code>>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-modified1How to force the build to be out of date, when a text file is modified?demoncodemonkey2009-09-04T16:16:15Z2009-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#16923562Answer by demoncodemonkey for visual studio 2008 software assurance to 2010demoncodemonkey2009-11-07T07:51:12Z2009-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#16864330Answer by demoncodemonkey for Catching Enter Keypress from a CComboBoxdemoncodemonkey2009-11-06T09:24:27Z2009-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-framework5What features would you like added/changed in the .NET Framework?demoncodemonkey2009-10-12T22:04:10Z2009-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#16741680Answer by demoncodemonkey for What features would you like added/changed in the .NET Framework?demoncodemonkey2009-11-04T14:40:53Z2009-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#16698870Answer by demoncodemonkey for What message should my MFC dialog control receive before I can modify it?demoncodemonkey2009-11-03T20:18:03Z2009-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-pack1Will the Scenic Ribbon ever be supported by the MFC Feature Pack?demoncodemonkey2009-10-29T14:56:28Z2009-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#16453712Answer by demoncodemonkey for Will the Scenic Ribbon ever be supported by the MFC Feature Pack?demoncodemonkey2009-10-29T17:36:00Z2009-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#16421650Answer by demoncodemonkey for Resources in a static lib file - MFCdemoncodemonkey2009-10-29T07:52:26Z2009-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#16364360Answer by demoncodemonkey for debug vs. release dll sizedemoncodemonkey2009-10-28T10:36:11Z2009-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-monitors3Supporting multi-monitorsdemoncodemonkey2009-10-27T14:53:01Z2009-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-class1Do I need to use dynamic_cast when calling a function that accepts the base class?demoncodemonkey2009-10-23T14:07:30Z2009-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<IA^>(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#15935924Answer by demoncodemonkey for VS2008 win32 project defaults - remove default precompiled headers demoncodemonkey2009-10-20T10:04:07Z2009-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") &&
// !wizard.FindSymbol("SUPPORT_MFC") && !wizard.FindSymbol("SUPPORT_ATL"))) && !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#15931410Answer by demoncodemonkey for Visual Studio Just-In-Time Debugging Annoyancesdemoncodemonkey2009-10-20T08:18:41Z2009-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#15931272Answer by demoncodemonkey for What kind of flash player does the following site uses?demoncodemonkey2009-10-20T08:12:39Z2009-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#15913671Answer by demoncodemonkey for Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall?demoncodemonkey2009-10-19T21:56:43Z2009-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#15753011Answer by demoncodemonkey for Stepping through code is slowdemoncodemonkey2009-10-15T21:49:26Z2009-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-net2How to convert an ASCII value into a character in .NETdemoncodemonkey2009-10-15T19:43:12Z2009-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#15745010Answer by demoncodemonkey for How to blank files in batchdemoncodemonkey2009-10-15T19:24:40Z2009-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.>%%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#15608190Answer by demoncodemonkey for What features would you like added/changed in the .NET Framework?demoncodemonkey2009-10-13T15:03:10Z2009-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#14985670Answer by demoncodemonkey for How to edit a watch expression in visual studio 2008 with the keyboard?demoncodemonkey2009-09-30T14:44:18Z2009-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-xp1Where can I set the initial value of CurrentUICulture in Windows XP?demoncodemonkey2009-09-29T14:39:01Z2009-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<System::String ^> ^args)
{
CultureInfo^ ci1 = Thread::CurrentThread->CurrentCulture;
CultureInfo^ ci2 = Thread::CurrentThread->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#14928701Answer by demoncodemonkey for Passing a reference of an handle in C++/CLIdemoncodemonkey2009-09-29T14:22:11Z2009-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<System::String ^> ^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#14861150Answer by demoncodemonkey for Showing solution path in VS2008 window namedemoncodemonkey2009-09-28T09:13:54Z2009-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#14769362Answer by demoncodemonkey for How to map a global key to refresh?demoncodemonkey2009-09-25T12:05:18Z2009-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#1814055Comment by demoncodemonkey on CMFCRibbonEdit does not get focus.demoncodemonkey2009-11-28T23:44:54Z2009-11-28T23:44:54ZSo please can you accept my answer then :Dhttp://stackoverflow.com/questions/865780/naming-enum-types/866032#866032Comment by demoncodemonkey on Naming enum typesdemoncodemonkey2009-11-27T13:52:58Z2009-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#1752265Comment by demoncodemonkey on Measuring application startup performancedemoncodemonkey2009-11-17T22:57:14Z2009-11-17T22:57:14ZOK you kicked me, it's all cool now :Dhttp://stackoverflow.com/questions/1487231/measuring-application-startup-performance/1487348#1487348Comment by demoncodemonkey on Measuring application startup performancedemoncodemonkey2009-11-17T22:56:17Z2009-11-17T22:56:17ZThanks, 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#1130871Comment by demoncodemonkey on [msvc,c++] Enable auto-build when F5 is pressed and source is out-of-datedemoncodemonkey2009-11-12T15:04:22Z2009-11-12T15:04:22ZI 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#269903Comment by demoncodemonkey on Most Astonishing Violation of the Principle of Least Astonishmentdemoncodemonkey2009-11-10T16:02:03Z2009-11-10T16:02:03ZFixed 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#868381Comment by demoncodemonkey on Easy way to build Android UI?demoncodemonkey2009-10-30T11:57:38Z2009-10-30T11:57:38Z"it crashes sometimes, but thats ok" - that's my mantra too ;)http://stackoverflow.com/questions/1631364/supporting-multi-monitorsComment by demoncodemonkey on Supporting multi-monitorsdemoncodemonkey2009-10-27T16:06:38Z2009-10-27T16:06:38ZThanks, 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-classComment by demoncodemonkey on Do I need to use dynamic_cast when calling a function that accepts the base class?demoncodemonkey2009-10-23T14:17:06Z2009-10-23T14:17:06ZDone (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#1591061Comment by demoncodemonkey on How can I provide a more robust link between SVN commits and ticketsdemoncodemonkey2009-10-20T23:21:12Z2009-10-20T23:21:12ZActually 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/…</a>http://stackoverflow.com/questions/1593211/enable-ribbon-controlComment by demoncodemonkey on enable ribbon controldemoncodemonkey2009-10-20T09:02:49Z2009-10-20T09:02:49ZDude, where's the question?http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstallComment by demoncodemonkey on Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall?demoncodemonkey2009-10-19T21:57:25Z2009-10-19T21:57:25ZBecause reinstalling VS takes the best part of 3hrshttp://stackoverflow.com/questions/1569481/stepping-through-code-is-slow/1569607#1569607Comment by demoncodemonkey on Stepping through code is slowdemoncodemonkey2009-10-15T21:50:30Z2009-10-15T21:50:30ZNCB 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-netComment by demoncodemonkey on How to convert an ASCII value into a character in .NETdemoncodemonkey2009-10-15T21:08:19Z2009-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#1574621Comment by demoncodemonkey on How to convert an ASCII value into a character in .NETdemoncodemonkey2009-10-15T20:13:36Z2009-10-15T20:13:36ZAnd we have a winner! Thanks :)