User Aardvark - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:50:28Z http://stackoverflow.com/feeds/user/3655 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1917568/what-does-the-schedule-during-the-first-few-days-look-like-for-new-hires-in-your/1917642#1917642 0 Answer by Aardvark for What does the schedule during the first few days look like for new hires in your company? Aardvark 2009-12-16T20:53:50Z 2009-12-16T20:53:50Z <p>There's usually a internal document/wiki page on setting up their development machine/environment. Often this includes procedures to get the code from source control and building the product. Often they'll end up updating the procedures since inevitably something has changed since the last time someone updated the docs (or the docs needed more explanation since it assumed knowledge of something the new person wasn't familiar with). </p> http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/247491#247491 1 Answer by Aardvark for What's the least useful comment you've ever seen? Aardvark 2008-10-29T16:33:43Z 2009-10-12T22:05:30Z <p>Someone's name or initials, and that's it. Sometimes these signatures define a block of code...</p> <pre><code>//SFD Start ...code... //SFD End </code></pre> <p>Like the code is such a work of art they have to sign it! Plus, what if someone else needs to change code marked this way?</p> <p>This should not be confused with the "blame" or "annotate" feature in source control systems - they rock!</p> http://stackoverflow.com/questions/1465885/delayed-rendering-of-wpf-silverlight-dependency-properties 1 Delayed "rendering" of WPF/Silverlight Dependency Properties? Aardvark 2009-09-23T13:08:24Z 2009-10-05T03:33:15Z <p>Is there a way to know the first time a Dependency Property is accessed through XAML binding so I can actually "render" the value of the property when needed?</p> <p>I have an object (class derived from Control) that has several PointCollection Dependency Properties that may contain 100's or 1000's of points. Each property may arrange the points differently for use in different types shapes (Polyline, Polygon, etc - its more complicated then this, but you get the idea). Via a Template different XAML objects use TemplateBinding to access these properties. Since my object uses a Template I never know what XAML shapes may be in use for my object - so I never know what Properties they may or may not bind to. I'd like to only fill-in these PointCollections when they are actually needed.</p> <p>Normally in .NET I'd but some logic in the Property's getter, but these are bypassed by XAML data binding.</p> <p>I need a WPF AND Silverlight compatible solution.</p> <p>I'd love a solution that avoids any additional complexities for the users of my object.</p> http://stackoverflow.com/questions/1510794/whats-the-proper-technical-term-for-high-ascii-characters/1510859#1510859 7 Answer by Aardvark for What's the proper technical term for "high ascii" characters? Aardvark 2009-10-02T17:24:17Z 2009-10-02T17:24:17Z <p>"Non-ASCII characters" </p> http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c/35963#35963 10 Answer by Aardvark for How to set up unit testing for Visual Studio C++ Aardvark 2008-08-30T13:51:31Z 2009-10-02T12:38:52Z <p><a href="http://www.gamesfromwithin.com/articles/0412/000061.html" rel="nofollow">This page may help</a> - it reviews a <em>bunch</em> of cpp unit test frameworks:</p> <ul> <li>CppUnit </li> <li>Boost.Test</li> <li>CppUnitLite </li> <li>NanoCppUnit</li> <li>Unit++</li> <li>CxxTest</li> </ul> <p>Check out <strong><em><a href="http://www.objectmentor.com/resources/downloads.html" rel="nofollow">CPPUnitLite</a></em></strong> or <strong><em><a href="http://gamesfromwithin.com/?p=48" rel="nofollow">CPPUnitLite2</a></em></strong>. <em>CPPUnitLite</em> was created by Michael Feathers, who originally ported JUnit to C++ as CPPUnit. He eventually created a 'Lite' version to avoid these complexities. He claimed his CPPUnit to be too much like JUnit - but lacks the reflection to make it easy to use. (I'm paraphrasing from Feather's <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> book). The <em>CPPUnitLite2</em> seems to be a re-write of it - with more features and bug fixes.</p> <p>I also just stumbled across <strong><em><a href="http://sourceforge.net/projects/unittest-cpp/" rel="nofollow">UnitTest++</a></em></strong> - which includes stuff from CPPUnitLite2 and some other framework.</p> <p>Microsoft has released (via MSDN magazine) <strong><em><a href="http://msdn.microsoft.com/en-us/magazine/cc136757.aspx" rel="nofollow">WinUnit</a></em></strong>. The download for the code seems broken, but here is a <a href="http://download.microsoft.com/download/f/2/7/f279e71e-efb0-4155-873d-5554a0608523/MSDNMag2008%5F02.exe" rel="nofollow">link</a> found in the comments <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2008/01/17/winunit-an-outstanding-native-c-unit-testing-tool.aspx#6128" rel="nofollow">here</a>. <strong>* Update: <a href="http://winunit.codeplex.com/" rel="nofollow">WinUnit Homepage</a> *</strong></p> http://stackoverflow.com/questions/1348078/why-stl-containers-are-preferred-over-mfc-containers/1348203#1348203 3 Answer by Aardvark for Why STL containers are preferred over MFC containers? Aardvark 2009-08-28T16:47:17Z 2009-08-28T16:53:05Z <ul> <li>STL has more collection types than MFC</li> <li><strong>Visual Studio (2008+) debugger visualizes STL much better than MFC.</strong> (AUTOEXP.DAT magic can fix that - but it is a pain! Nothing like debugging your debugger when you screw it up...)</li> </ul> <p>One good thing with MFC is that there is still a large corpus of MFC code out there. Other answers talk about third-party compatibility. Don't forget third party MFC-based stuff.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/58844#58844 285 Answer by Aardvark for Great programming quotes Aardvark 2008-09-12T12:44:19Z 2009-08-21T15:36:27Z <p>Maybe I work too much on legacy code, but this always springs to mind:</p> <blockquote> <p>Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.</p> </blockquote> <p>Antoine de Saint Exupéry</p> http://stackoverflow.com/questions/1308807/activex-control-created-with-cwndcreatecontrol-and-invisiblity-problem 0 ActiveX control created with CWnd::CreateControl and invisiblity problem Aardvark 2009-08-20T21:06:05Z 2009-08-20T21:06:05Z <p>I noticed if a create an ActiveX control with an MFC CWnd and call ShowWindow(SW_HIDE) or SetWindowPos to hide the window the internal m_hWnd of the class is set to NULL.</p> <p>Debugging into MFC revealed that some sort of "OLE Verb" was being executed on the object, which I think indirectly is nulling out my handle.</p> <p><strong>Anyone know why?</strong></p> <p>ModifyStyle(WS_VISIBLE, 0) works fine.</p> http://stackoverflow.com/questions/1308736/can-cwndcreatecontrol-be-used-with-windowless-activex-controls 0 Can CWnd::CreateControl be used with windowless ActiveX controls? Aardvark 2009-08-20T20:53:11Z 2009-08-20T20:53:11Z <p>Does anyone know why MFC's <strong><em>CWnd::CreateControl</em></strong> does not appear to successfully create some ActiveX controls, for example VBA's Label control. (PROGID: "Forms.Label")?</p> <p>I suspect it can't support windowless ActiveX controls, can anyone confirm this? I have workarounds (ATL), I'd just prefer to use a CWnd.</p> http://stackoverflow.com/questions/1163905/using-mfc-in-windows-service/1302192#1302192 2 Answer by Aardvark for Using MFC in Windows service? Aardvark 2009-08-19T19:36:49Z 2009-08-20T13:09:06Z <p>(I know this answer is a bit late and this question was already answered but MFC in services is a sore spot for me...)</p> <p>CSockets, far as I recall, <strong><em>require a Window</em></strong>. It makes an invisible one in the background. I found out this the hard way when I tried include some pre-exisiting MFC code into a windows service. Maybe this was only required if you accepted socket connection - I can't recall? <strong>But it did not work!</strong> (How exactly I wasted so much time doing this w/o realizing this limitation is a long story)</p> <p>CObject? If you need the runtime class id stuff use RTTI (dynamic_cast, etc...)</p> <p>CString, I like CString, I know it's shared with ATL now, not sure if you pull it in w/o MFC or ATL included... You could use std::string. Also, I recall someone created a derived std::string that provided the same methods as CString. (EDIT: found the <a href="http://www.developer.com/net/cplus/article.php/627611" rel="nofollow">code</a> - man!! that's a blast from the past...)</p> <p>CArchive, CMemFile: do you really need these?</p> <p>Anyway, as Roel said, ATL may be more helpful. I wouldn't use MFC in a server-side application (ever!) ATL? Maybe. If I needed COM, defiantly. No COM but for CAtlServiceModuleT, etc... maybe....</p> http://stackoverflow.com/questions/1302347/tree-iterator-can-you-optimize-this-any-further/1302520#1302520 1 Answer by Aardvark for Tree iterator, can you optimize this any further? Aardvark 2009-08-19T20:41:23Z 2009-08-19T20:47:12Z <p>I <strong><em>HATE</em></strong> when answers dismiss the question with a "don't do that" but here I go...</p> <p>Say there was a way to remove the down bool... will that really make any REAL difference in execution time? We're talking about a small handful of CPU operations and a few byte extra on the stack.</p> <p>Focus on making the child() and parent() calls faster if you need speed. Otherwise you're wasting your time (IMOHO).</p> <p>EDIT: Maybe walk the tree (w/ this "slow" code) ONCE and build an array of pointers into the tree in the desired order. Use this "index" later.</p> <p>What I'm saying is I think you're approaching optimization from the wrong angle.</p> http://stackoverflow.com/questions/751685/creating-a-gui-with-mfc/751921#751921 1 Answer by Aardvark for Creating a GUI with MFC Aardvark 2009-04-15T14:16:10Z 2009-07-06T19:45:17Z <p>If you want the layout features of a dialog in an MFC application derive your CView class from <strong>CFormView</strong>. This should seem a lot like the "forms" based GUI of .NET WinForms, VB6, etc...</p> <p>This can be done via the new application wizard, under the Generated Classes' Base Class dropdown section (I checked this on VS 2008).</p> <p>You can also just create a dialog-based application - which you seem to already be familiar with.</p> <p>There are several other CView-derived classes that provide other ways to design the "views" of your application. Using the default CView as your base class (as the wizards create by default) assumes you'll handle manually creating "controls" and/or <em>painting</em> the screen. Painting (actually drawing the display with the GDI) being something old-school Win32 developers are familiar but is often never done in more modern frameworks.</p> http://stackoverflow.com/questions/142916/whats-your-favorite-programmable-calculator/166795#166795 5 Answer by Aardvark for What's your favorite programmable calculator? Aardvark 2008-10-03T13:18:24Z 2009-06-27T14:31:02Z <h2>The first and only <strong><em>true</em></strong> programmer's calculator. The <a href="http://www.hpmuseum.org/hp16.htm" rel="nofollow">HP-16C</a>.</h2> <p><img src="http://www.thimet.de/CalcCollection/Calculators/HP-16C/HP-16C-2-S.JPG" alt="HP 16c" /></p> <p>(yes, that display is showing hex)</p> http://stackoverflow.com/questions/275458/conversion-of-fortran-77-code-to-c/1009378#1009378 0 Answer by Aardvark for Conversion of Fortran 77 code to C++ Aardvark 2009-06-17T20:30:25Z 2009-06-17T20:30:25Z <p>I've worked on a application that, at its heart, was code converted from FORTRAN using <strong>for_c</strong> . The code it created was god awful. It was very difficult to maintain since most of it was indecipherable. Luckily that code was pretty stable and it was rare that anything had to be done to it.</p> <p>However, this was done many years ago - circa the early 16-bit years of Windows. Maybe for_c is better now?</p> http://stackoverflow.com/questions/1006896/in-what-areas-can-one-find-really-expensive-software-licenses/1006991#1006991 1 Answer by Aardvark for In what areas can one find *really* expensive software licenses? Aardvark 2009-06-17T13:24:01Z 2009-06-17T13:24:01Z <p>You haven't heard about these types of licenses since companies don't advertise the costs of these type of systems. The more money a system can save or make for a company, the more they will charge.</p> <p>Finding oil fields!? (Schlumberger?) Yeah, that's going to cost 10 of thousands or more.</p> <p>Enterprise software and especially software specific to industries cost quite a bit.</p> http://stackoverflow.com/questions/958003/how-to-manage-special-cases-and-heuristics/958063#958063 2 Answer by Aardvark for How to manage special cases and heuristics Aardvark 2009-06-05T20:48:42Z 2009-06-05T20:48:42Z <p>Unit testing can help here. Having tests that actually simulate the special cases can often serve as documentation on why the code does what it does. This can often be better then just describing the issue in a comment. </p> <p>Not that this replaces moving the special case handling to their own functions and decent comments...</p> http://stackoverflow.com/questions/956011/useless-interfaces/956094#956094 3 Answer by Aardvark for Useless interfaces Aardvark 2009-06-05T14:15:31Z 2009-06-05T14:15:31Z <p>Some technologies require you use an interfaces. <strong><em>COM</em></strong> for one. Their you often have just one class implementing your interface.</p> http://stackoverflow.com/questions/230298/strategies-for-multicore-builds-mp-that-use-import 2 Strategies for multicore builds (/MP) that use #import Aardvark 2008-10-23T15:53:58Z 2009-06-05T12:36:46Z <p>I'm working on a new solution configuration for our large VC++ project using VS 2008. I'd like this configuration to use the multicore build flag <a href="http://msdn.microsoft.com/en-us/library/bb385193.aspx" rel="nofollow">/MP</a>. </p> <p>However, the "#import" feature of generating COM wrapper classes is sprinkled through-out the code base and this feature is not supported when using /MP.</p> <p>I understand why #import won't work, <strong>I want to know if anyone has faced this issue and how they worked around it?</strong></p> <p>I am doing the following:</p> <ul> <li>Not use the /MP flag on projects that are small or <strong><em>beyond</em></strong> help. (maybe I'll come back to them later)</li> <li>Removed the #import and replaced it with a more standard MIDL-generated header (#include). This is only an option in a few places that are easy to convert to old school COM.</li> <li>Make a new project that #imports the remaining libraries. Make that build first. #Include the .tlh files it creates in all the places that #imported previously.</li> </ul> <p>I'm curious if anyone has <strong>any other suggestions?</strong> Also, on the <strong>last point</strong> (making a new project and using #import only there) - if you did something like this, <strong>how did you do it?</strong> What type of project, what did the "source" look like, where did you output files? How did you include them? (you know, do all the thinking for me!)</p> http://stackoverflow.com/questions/951419/how-many-windows-handles-in-use-is-too-many/951455#951455 1 Answer by Aardvark for How many Windows handles in use is "too many"? Aardvark 2009-06-04T15:58:19Z 2009-06-04T15:58:19Z <p>The <a href="http://blogs.msdn.com/ntdebugging/archive/2007/01/04/desktop-heap-overview.aspx" rel="nofollow">desktop heap</a>, which is a pool of memory where the real "stuff" the handle represents lives. <strong>It's sometimes not so much how many handles you have allocated but how much memory each <em>object</em> under that handle is using.</strong> You can debug the heap <a href="http://www.microsoft.com/downloads/details.aspx?familyid=5cfc9b74-97aa-4510-b4b9-b2dc98c8ed8b&amp;displaylang=en" rel="nofollow">this way</a>. It is a <a href="http://support.microsoft.com/kb/914216" rel="nofollow">pain</a> to install.</p> <p>(this was recycled from another one of my answers)</p> http://stackoverflow.com/questions/941512/whats-the-difference-between-a-bug-tracking-and-an-issue-tracking-system 7 What's the difference between a bug tracking and an issue tracking system? Aardvark 2009-06-02T19:42:44Z 2009-06-02T20:46:40Z <p>I'm looking for both an explanation of why and when you would use each system <em>and</em> what features differentiate a bug vs. issue tracking application.</p> http://stackoverflow.com/questions/910991/how-can-my-app-find-the-sender-of-a-windows-message/911293#911293 0 Answer by Aardvark for How can my app find the sender of a windows message? Aardvark 2009-05-26T15:24:43Z 2009-05-26T20:03:38Z <p>(I originally suggested using Spy++ or winspector, but they do not hook into the <em>sending</em> of messages. That doesn't even make sense! A window receives messages but they don't send them, a thread does that. I'll leave my suggestion about using a debugger.)</p> <p>Sometimes debugging can help. Try downloading the windows <a href="http://www.microsoft.com/whdc/DevTools/Debugging/debugstart.mspx" rel="nofollow">PDB</a> files and setting a breakpoint that hits only when one of these messages occur. Looking at the call stack at that point can often shed some light on why things are happening. Posted messages and messages send from other processes will foil this approach.</p> http://stackoverflow.com/questions/870247/how-can-i-see-what-is-on-the-desktop-heap/898678#898678 1 Answer by Aardvark for How can I see what is on the Desktop Heap Aardvark 2009-05-22T16:11:48Z 2009-05-22T16:11:48Z <p>Stolen from a comment on a blog post <a href="http://blogs.msdn.com/ntdebugging/archive/2007/01/04/desktop-heap-overview.aspx" rel="nofollow">here</a></p> <blockquote> <p>Let me give a little background on how desktop heap allocations are made. The desktop heaps are in kernel mode virtual address space, so individual desktop heap allocations have to be made by a component running in kernel mode. In particular, win32k.sys is the only kernel mode component that makes desktop heap allocations. win32k.sys in the kernel mode side of Win32, and it includes both the window manager (USER) and GDI. It is the window manager piece of win32k.sys that uses desktop heap. The functionality of the window manager is exposed to processes running in user mode through user32.dll. It is user32.dll that exports user mode callable functions that are implemented in win32k.sys. So if a process does not load user32.dll, it will not use desktop heap.</p> <p>Regarding your question about <strong>setting a breakpoint</strong> that will catch desktop heap allocations... yes, there is such a function - <strong>win32k!DesktopAlloc</strong>. However, this is a kernel mode function, and to set a breakpoint on it will require that you use a <strong>kernel debugger.</strong></p> </blockquote> <p>That sounds all scary complicated to me who has never ventured away from user-mode in Windows.</p> <p>When I had a similar problem I just put break points all over the startup portion of our application. At each break I would watch the level of allocated handles and what dhelpmon told me. Doing a sort of binary search I started to narrow down where the allocations were happening.</p> http://stackoverflow.com/questions/860237/how-can-i-track-who-entered-a-comment-on-a-tfs-work-item 1 How can I track who entered a comment on a TFS Work Item Aardvark 2009-05-13T20:30:52Z 2009-05-16T10:19:04Z <p>When working on an issue in other bug-tracking systems there are ways to add notes to items that are clearly marked with the authors user name and the date entered. I'm looking for a similar feature in TFS's work items. <strong>Is there such a feature?</strong></p> <p>We currently use a system that allows us to hit a hot-key to paste the current time and username into the multi-line text fields. All users know to paste that info in above what they type. While this is manual, it's acceptable and easy. For example:</p> <pre> 5/1/2009 1:20:00 am - AManagr- Defered to next version, and here's why... 4/24/2009 1:20:00 am - ADev - QA machine had out of date XYZ gizmo component. Here's the convoluted way this can happen... blah blah... This is difficult to fix. 4/22/2009 1:20:00 am - QAGuy - I can't save reports to PDF files. </pre> <p>Other tools I've used (Mantis maybe?) had a "Notes" feature baked in. So I couldn't forget to put my name on comments, or know if new notes go to the top or bottom of a field, etc...</p> <p>Manually typing your name and the date/time isn't a (good) option. But, hitting a single key, or toolbar button would be OK.</p> <p>I'm not looking for advice on decomposing long-form "notes" like this into multiple specific individual fields. Also, I am aware of the history tab on work items, but this isn't sufficient. Who wrote what and when needs to be clear and in the same view as the text.</p> <p><strong>Update</strong></p> <p>Imagine several team members researching an issue. They all add info to the work item, each appending more text to the same field. How do you easily know who added what part? </p> <p>The History log shows a line for each user's change and even shows the field's change. But that is on another screen and is hard to mentally parse the data it shows.</p> <p>They could "sign" each part of the text - but this is a pain without help from the tool.</p> <p>Here is what Mantis does (web page <a href="http://www.mantisbt.org/demo/view.php?id=5942#bugnotes" rel="nofollow">here</a>): <img src="http://devsci.googlepages.com/SO860237.png" alt="alt text" /></p> <p>Maybe Stackoverflows comments feature is a good example as well.</p> http://stackoverflow.com/questions/868789/whats-the-best-way-to-migrate-from-sourcesafe-to-clearcase/869077#869077 1 Answer by Aardvark for What's the best way to migrate from SourceSafe to ClearCase? Aardvark 2009-05-15T14:35:40Z 2009-05-15T14:35:40Z <p>I actually lived through a VSS to Clear Case conversion. Rational had a conversion tool that we ran. It took FOREVER (2-3 days, but see below) to complete on our VSS database of <em>maybe</em> 2 years (maybe it was 3 years, but not close to your 10 years). But it worked far as I recall. It maintained the history and labels.</p> <p>The slowness problem was likely due to a flaky RAID controller in our new source control server. The imports worked fine, but Clear Case would detect corruptions in it's data after a few days of working (often after a label). After several re-imports, firmware updates, and a new server it all worked out.</p> <p>I'd still plan to give the import a weekend to run. Try to get someone who can remote in occasionally to check it's progress.</p> <p>On a side note, I've also done VSS conversions to Perforce and TFS. In general, I suggest giving the import tools a try. If they work, great. If they give you grief, just do what everyone else answering is suggesting: just start over by adding all the files as new.</p> http://stackoverflow.com/questions/868490/what-are-windows-user-objects/868589#868589 1 Answer by Aardvark for What are Windows "USER objects" Aardvark 2009-05-15T13:08:36Z 2009-05-15T13:08:36Z <p>Here is a "classic" MSDN article: <a href="http://msdn.microsoft.com/en-us/library/ms810501.aspx" rel="nofollow">Give Me a Handle, and I'll Show You an Object</a></p> <p>Last time I was tracking down Windows object leaks (which i suspect you have) <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> was handy (handley?). The lower-pane could show some allocated system objects, plus it could do the simple USER, GDI, etc object counting.</p> <p>The <a href="http://blogs.msdn.com/ntdebugging/archive/2007/01/04/desktop-heap-overview.aspx" rel="nofollow">desktop heap</a>, which is a pool of memory where the real "stuff" the handle represents lives. It's sometimes not so much how many handles you have allocated but how much memory each <em>object</em> under that handle is using. You can debug the heap <a href="http://www.microsoft.com/downloads/details.aspx?familyid=5cfc9b74-97aa-4510-b4b9-b2dc98c8ed8b&amp;displaylang=en" rel="nofollow">this way</a>. It is a <a href="http://support.microsoft.com/kb/914216" rel="nofollow">pain</a> to install.</p> http://stackoverflow.com/questions/839975/how-does-c-by-ref-argument-passing-is-compiled-in-assembly/840063#840063 0 Answer by Aardvark for How does c++ by-ref argument passing is compiled in assembly? Aardvark 2009-05-08T14:29:38Z 2009-05-08T14:29:38Z <p>You could have a look for yourself. Many debuggers allows you to switch between a code and disassembly view. I'd set a breakpoint on the function call in the code view, run the app to that point, switch to the assembly, and step over each command.</p> <p>[SPOILER ALERT]</p> <p>.</p> <p>It's a pointer.</p> http://stackoverflow.com/questions/836327/stripping-down-vs-2008-win32-dll-to-one-file/837005#837005 0 Answer by Aardvark for Stripping Down VS 2008 Win32 DLL to one file. Aardvark 2009-05-07T20:57:47Z 2009-05-07T20:57:47Z <p>You could #include your generated file into a existing multi-file project. That way you can have a shell of a complicated project and only emit something smaller, like a simple function.</p> <p>For example:</p> <pre><code>#include &lt;system_stuff&gt; void main() { Go(); } #include "generated_file_that_has_method_go.cpp" void other_code() { } </code></pre> http://stackoverflow.com/questions/835810/multiproc-builds-in-vs2008/835931#835931 0 Answer by Aardvark for Multiproc builds in VS2008 Aardvark 2009-05-07T17:15:25Z 2009-05-07T17:15:25Z <p>I suspect you're asking about the new (for VS 2008) multi-proc VC++ build feature. See <a href="http://msdn.microsoft.com/en-us/library/bb385193.aspx" rel="nofollow">this</a>.</p> <blockquote> <p>The /MP option can reduce the total time to compile the source files on the command line. The /MP option causes the compiler to create one or more copies of itself, each in a separate process. Then these copies simultaneously compile the source files. Consequently, the total time to build the source files can be significantly reduced.</p> </blockquote> <p>This feature was present in older versions of VC++, but was not documented. This is <strong><em>not</em></strong> the multi project building we've had for some time.</p> http://stackoverflow.com/questions/825266/tfs-process-guidance-template-lock-in 0 TFS process guidance template lock-in? Aardvark 2009-05-05T14:57:27Z 2009-05-05T19:38:04Z <p>My team is looking to migrate many of our tools (SCM, bug-tracking, builds, testing) to TFS. We're considering moving each system in stages. For example, move source control first, bug/feature tracking next, etc...</p> <p>Since we have to choose a process template to use source control (or anything in TFS) <strong>how locked in are we with the decision?</strong> I'm looking to avoid having to create another project later (or is that not as bad as I think it would be?).</p> <p><strong>I know I can in theory customize everything the process template configures after the fact (right?), but how feasible is this in practice?</strong></p> <p>Here is how I see things happening:</p> <ol> <li>We migrate our source code. We choose Microsoft's CMMI template.</li> <li>We create a new work item (or check-in note) that is a simple link to our legacy bug tracking system.</li> <li>We work for awhile.</li> <li>We wait until <em>the powers that be</em> (we're a decent sized software company) to work out a new TFS development workflow. This may be a simple collection of new work items or an entirely new template that configures all sorts of stuff.</li> <li>We try to migrate our TFS project to this new system without loosing our history.</li> </ol> <p><strong>Will we be sorry we didn't just wait until all these decisions were finalized before using TFS?</strong></p> http://stackoverflow.com/questions/797884/winapi-how-to-change-the-order-of-buttons-on-the-taskbar/798146#798146 1 Answer by Aardvark for [WinAPI] How to change the order of buttons on the taskbar? Aardvark 2009-04-28T14:08:43Z 2009-04-28T14:08:43Z <p>The fact that the Windows API does not expose methods to rearrange taskbar buttons is intentional. There is no supported way to do this. </p> <p>See <a href="http://blogs.msdn.com/oldnewthing/archive/2005/05/06/415158.aspx" rel="nofollow">this</a> article (and the ones it links to) for the thinking behind why the shell developers don't expose this functionality.</p> <p><em>However,</em> resourceful people have devised hacks the accomplish this (see the other answers). I suspect these methods will fall apart as Windows evolves (Windows 7, 64bit, etc...). Don't be surprised when these techniques stop working.</p> http://stackoverflow.com/questions/408406/silverlight-2-text-glow-effect/416729#416729 Comment by Aardvark on Silverlight 2: Text Glow effect? Aardvark 2009-12-04T18:09:02Z 2009-12-04T18:09:02Z I only see borders with glows there... http://stackoverflow.com/questions/96944/what-is-the-best-keyboard-mouse-for-ergonomics-or-to-prevent-wrist-pain/96948#96948 Comment by Aardvark on What is the best keyboard/mouse for ergonomics or to prevent wrist pain? Aardvark 2009-11-05T02:14:04Z 2009-11-05T02:14:04Z This mouse has done WONDERS for my wrist pain. A+++ highly recommend. http://stackoverflow.com/questions/1176635/problems-with-data-binding-in-itemcontainerstyle-in-silverlight-3 Comment by Aardvark on Problems with data binding in ItemContainerStyle in Silverlight 3 Aardvark 2009-10-23T17:47:28Z 2009-10-23T17:47:28Z Same as this bug? <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=356496" rel="nofollow">connect.microsoft.com/VisualStudio/feedback/&hellip;</a> http://stackoverflow.com/questions/1465885/delayed-rendering-of-wpf-silverlight-dependency-properties/1467174#1467174 Comment by Aardvark on Delayed "rendering" of WPF/Silverlight Dependency Properties? Aardvark 2009-10-04T22:46:31Z 2009-10-04T22:46:31Z I'm still trying to figure out why this solution isn't working in my situation. Maybe this doesn't work when binding in a template? http://stackoverflow.com/questions/645352/is-the-number-of-pixels-per-inch-standard-on-all-windows-pc-displays-logpixelsx/645408#645408 Comment by Aardvark on Is the number of Pixels per Inch standard on all Windows PC displays? (LogPixelsX) in the GetDeviceCaps WinAPI call. Aardvark 2009-09-25T15:41:36Z 2009-09-25T15:41:36Z Down voted for the incorrect info about XP ONLY having 2 modes (which is not correct as bobince pointed out). http://stackoverflow.com/questions/1465885/delayed-rendering-of-wpf-silverlight-dependency-properties/1467035#1467035 Comment by Aardvark on Delayed "rendering" of WPF/Silverlight Dependency Properties? Aardvark 2009-09-23T17:07:54Z 2009-09-23T17:07:54Z What Martin said... http://stackoverflow.com/questions/1460936/why-stl-implementation-is-so-unreadable-how-c-could-have-been-improved-here/1461008#1461008 Comment by Aardvark on Why STL implementation is so unreadable? How C++ could have been improved here? Aardvark 2009-09-22T17:05:56Z 2009-09-22T17:05:56Z namespaces for macros? http://stackoverflow.com/questions/1333109/messaging-protocol/1333131#1333131 Comment by Aardvark on Messaging Protocol Aardvark 2009-08-26T20:38:06Z 2009-08-26T20:38:06Z - Don't forget a scheme for messages longer than 255, even if you don't need it now (or ever) at least don't design messages that would make adding this later difficult. - Also don't forget to protect against lying messages. For example, I send a message of length 10, but only send 5. Do you lock-up (bad)? Can you detect this? Drop the connection? Try to recover? - WATCH YOUR BUFFERS! Don't overrun them! (classic security flaw) http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750673#750673 Comment by Aardvark on What technologies are you using even though they are embarassingly out of date? Aardvark 2009-08-26T17:07:12Z 2009-08-26T17:07:12Z Thanks for the Wikipedia link, needed that... http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750624#750624 Comment by Aardvark on What technologies are you using even though they are embarassingly out of date? Aardvark 2009-08-26T17:05:20Z 2009-08-26T17:05:20Z @Stefano Borini: I drank some cool aid at a TechEd, never been right since... http://stackoverflow.com/questions/1091775/how-can-i-programmatically-stop-a-notebook-battery-from-charging/1330529#1330529 Comment by Aardvark on How can I programmatically stop a notebook battery from charging Aardvark 2009-08-25T19:53:08Z 2009-08-25T19:53:08Z Where did you get that information? http://stackoverflow.com/questions/1305021/understaning-assembly-code-in-windbg Comment by Aardvark on understaning assembly code in windbg Aardvark 2009-08-20T20:18:16Z 2009-08-20T20:18:16Z @Bombe, He's gotta start somewhere - but this isn't the right way/place to do it. http://stackoverflow.com/questions/1302347/tree-iterator-can-you-optimize-this-any-further/1302573#1302573 Comment by Aardvark on Tree iterator, can you optimize this any further? Aardvark 2009-08-19T20:56:34Z 2009-08-19T20:56:34Z you execute current-&gt;child() even if current does not have a child which isn't what the original code does. http://stackoverflow.com/questions/1302347/tree-iterator-can-you-optimize-this-any-further/1302520#1302520 Comment by Aardvark on Tree iterator, can you optimize this any further? Aardvark 2009-08-19T20:48:14Z 2009-08-19T20:48:14Z sorry for the multiple edits... http://stackoverflow.com/questions/1265573/forcefully-storing-data-to-container-storage-using-mfc-ole-classes Comment by Aardvark on Forcefully storing data to container storage using MFC OLE classes Aardvark 2009-08-19T19:08:59Z 2009-08-19T19:08:59Z Dup: <a href="http://stackoverflow.com/questions/1270201" rel="nofollow">stackoverflow.com/questions/1270201</a>