User christopher_f - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:26:37Z http://stackoverflow.com/feeds/user/9224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1370621/how-do-i-get-mnemonics-in-trackpopupmenu 0 How do I get mnemonics in TrackPopupMenu? christopher_f 2009-09-02T23:06:27Z 2009-09-03T01:15:07Z <p>I have a win32/MFC application with a context menu that I build programatically:</p> <pre><code>CPoint pt; GetMenuPopupPos(&amp;pt); CAtlString csItem = _T("&amp;Example"); CMenu menu; menu.CreatePoupMenu(); menu.AppendMenu(MF_STRING, IDM_EXAMPLE_COMMAND, csItem); menu.TrackPopupMenuEx(TPM_LEFTALIGN|TPM_LEFTBUTTON, pt.x, pt.y, this, NULL); </code></pre> <p>I've omitted the rest of the menu items for brevity. The menu works, including the keyboard shortcuts, but the problem is that I can't see the underlined shortcuts in the final menu. </p> <p>This menu has a single entry:</p> <p>Example</p> <p>While I would expect the entry (where the bold letter would be underlined).</p> <p><strong>E</strong>xample</p> <p>How do I get the underlines to show up?</p> http://stackoverflow.com/questions/1253265/playing-wav-data-of-any-format-in-mac-c-program-similar-to-win32-playsound/1257520#1257520 1 Answer by christopher_f for Playing .wav data of any format in Mac C++ program, similar to win32 PlaySound christopher_f 2009-08-10T22:12:38Z 2009-08-10T22:12:38Z <p>I you are developing in 10.5, then AudioQueues are the API you want. They aren't as easy as a single function, but they do provide a fairly comprehensive high level API for playing all kinds of sound files.</p> <p>The <a href="http://developer.apple.com/documentation/MusicAudio/Conceptual/AudioQueueProgrammingGuide/Introduction/Introduction.html#//apple%5Fref/doc/uid/TP40005343-CH1-SW1" rel="nofollow">Audio Queue Programming Guide</a> goes through a detailed example of using it for playback, and covers the functions and structures you will need to provide.</p> <p>I can't vouch for the quality of this <a href="http://www.idevgames.com/forum/showthread.php?t=15280" rel="nofollow">sample</a>, but it does show a simple Obj-C wrapper for playing background music that should be enough to get you past the documentation wall.</p> <p>Good luck!</p> http://stackoverflow.com/questions/293967/how-much-work-should-be-done-in-a-constructor/300737#300737 0 Answer by christopher_f for How much work should be done in a constructor? christopher_f 2008-11-19T01:08:55Z 2008-11-19T01:08:55Z <p>RAII is the backbone of C++ resource management, so acquire the resources you need in the constructor, release them in the destructor. </p> <p>This is when you establish your class invariants. If it takes time, it takes time. The fewer "if X exists do Y" constructs you have, the simpler the rest of the class will be to design. Later, if profiling shows this to be a problem, consider optimizations like lazy initialization (acquiring resources when you first need them).</p> http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada 3 Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? christopher_f 2008-10-17T21:45:59Z 2008-10-17T22:51:24Z <p>I'm working on a large, aging code base for an MFC app. The code has been worked on by many developers over time, and as a result, we have three different ways throughout the code of dealing with the possibility of an allocation failure with new.</p> <p>The first way is to test for NULL on the result of new. We don't use nothrownew.obj so this is clearly an error that needs to be cleaned up.</p> <p>The second is to catch CMemoryException* (yes, C++ exceptions are enabled in the compiler). From what I understand, MFC overrides the standard operator new, and throws this thing instead. I am fairly certain that this second method is correct in the MFC application itself. MFC overrides new, with its strange CMemoryException throwing version. </p> <p>The last comes from our base of people who are good with C++, but aren't neccessarily MFC programmers. They are catching const std::bad_alloc&amp;. </p> <p>What I really don't know is what to expect for static libraries linked into the application. This is were the vast majority of the code that uses bad_alloc lives. Assuming these libraries are not compiled with MFC or ATL, and are written in standard C++ only, can they expect to catch bad_alloc? Or will the presence of MFC in the application they link to infect them with the global new operator and render their attempts to fail cleanly on a bad allocation moot?</p> <p>If you have an answer, could you explain how this works, or point me to the right reference to sort this out?</p> http://stackoverflow.com/questions/149488/disk-backed-stl-container-classes/149774#149774 3 Answer by christopher_f for Disk-backed STL container classes? christopher_f 2008-09-29T17:32:49Z 2008-09-29T17:32:49Z <p>I've never had to do anything quite like this, but It might be possible to do what you want to do by writing a custom allocator that makes use of a memory mapped files to back your data.</p> <p>See <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.mapped_file" rel="nofollow">boost::interprocesses</a> for docs on their easy to use implementation of memory mapped files and <a href="http://www.ddj.com/cpp/184406243" rel="nofollow">this Dr. Dobbs article</a> for a detailed discussion on writing allocators.</p> http://stackoverflow.com/questions/134731/returning-a-const-reference-to-an-object-instead-of-a-copy/135242#135242 1 Answer by christopher_f for Returning a const reference to an object instead of a copy christopher_f 2008-09-25T18:59:03Z 2008-09-25T18:59:03Z <p>Does it matter? As soon as you use a modern optimizing compiler, functions that return by value will not involve a copy unless they are semantically required to.</p> <p>See <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.9" rel="nofollow">the C++ lite FAQ</a> on this.</p> http://stackoverflow.com/questions/134569/c-exception-throwing-stdstring/134640#134640 10 Answer by christopher_f for c++ exception : throwing std::string christopher_f 2008-09-25T17:16:46Z 2008-09-25T17:16:46Z <p>Yes. std::exception is the base exception class in the C++ standard library. You may want to avoid using strings as exception classes because they themselves can throw an exception during use. If that happens, then where will you be?</p> <p>boost has an excellent <a href="http://www.boost.org/community/error_handling.html" rel="nofollow">document</a> on good style for exceptions and error handling. It's worth a read.</p> http://stackoverflow.com/questions/134095/so-youve-entered-the-wild-rainforest-of-someones-new-api-how-do-you-find-your/134223#134223 4 Answer by christopher_f for So you've entered the wild rainforest of someone's new API. How do you find your way through? christopher_f 2008-09-25T16:05:32Z 2008-09-25T16:05:32Z <p>1) Read the documentation. The documentation for API's is almost always wrong, or incomplete in ways that will trip you up, but it's worth doing to get a general roadmap.</p> <p>2) As Bill the Lizard said above, read the unit tests. If they are well written, they will provide a skeleton for how the API is meant to be used and what assumptions are valid. If they aren't well written, you may wish to reconsider using the API. If you don't have unit tests, find working examples to dissect. Don't copy examples exactly. They are almost always wrong in some way that will bite you later, and you won't really have learned anything about the API.</p> <p>3) Write some code. Start simple. Call one function. When it doesn't do what you expect, iterate. These don't have to be unit tests, but if you do write unit tests, you'll have your own personal documentation of what you understand about the library. I like writing command line console apps that let me throw different things at the API as a first step. The less time it takes between the question "what happens if..," and the answer, the better.</p> <p>4) When you have a problem, ask somebody. If it's an in-house API, call up the guy who wrote it. If not, the internet is a great resource for software questions, and every API has a community of enthusiasts that are generally happy to welcome someone who asks good questions to the fold. </p> <p>Repeat 3 and 4 until you are comfortable with the API.</p> http://stackoverflow.com/questions/125791/should-net-developers-really-be-spending-time-learning-c-for-low-level-exposur/128506#128506 0 Answer by christopher_f for Should .NET developers *really* be spending time learning C for low-level exposure? christopher_f 2008-09-24T17:27:15Z 2008-09-24T17:27:15Z <p>Is the issue learning C or MSIL, or is it more fundamental? I'd say that in general, more developers could stand to learn more about how <strong>computers</strong>, physical or virtual, work. A person can get to be a fairly competent programmer by only understanding a language and API in a box. To take the profession to the next level, I feel that developers really need to understand the whole stack. Not necessarily in detail, but in sufficient generality to help solve problems.</p> <p>A lot of these skills are being talked about here can be acquired by learning more about compilers and language design. You probably need to learn C to do this (whoops, sneaky), but compiler writing is a great context to learn C in. Steve Yegge <a href="http://steve-yegge.blogspot.com/2007/06/rich-programmer-food.html" rel="nofollow">talks about this</a> on his blog, and I largely agree with him on this point. My compiler writing course in university was one of the most eye opening courses I've ever taken, and I really wish it had been a 200 level course, instead of a 400 level one. </p> http://stackoverflow.com/questions/105049/what-are-the-best-design-patterns-books-you-have-read/105091#105091 3 Answer by christopher_f for What are the best design patterns books you have read? christopher_f 2008-09-19T20:07:22Z 2008-09-19T20:07:22Z <p>I really liked <a href="http://www.industriallogic.com/xp/refactoring/" rel="nofollow">Refactoring to Patterns</a> for its "before and after" approach to using patterns to solve problems.</p> http://stackoverflow.com/questions/104959/what-is-the-best-way-to-inspect-stl-containers-in-visual-studio-debugging/105032#105032 2 Answer by christopher_f for What is the best way to inspect STL containers in Visual Studio debugging? christopher_f 2008-09-19T20:00:46Z 2008-09-19T20:00:46Z <p>For vectors, this <a href="http://social.msdn.microsoft.com/forums/en-US/vsdebug/thread/c09f4fe4-4783-4dbb-8d36-85489fa2a4ae" rel="nofollow">thread</a> on the msdn forums has a code snippet for setting a watch on a vector index that might help.</p> http://stackoverflow.com/questions/104844/default-printer-in-unmanaged-c/104904#104904 1 Answer by christopher_f for Default Printer in Unmanaged C++ christopher_f 2008-09-19T19:41:59Z 2008-09-19T19:41:59Z <p>GetDefaultPrinter <a href="http://msdn.microsoft.com/en-us/library/ms535475(VS.85).aspx" rel="nofollow">(MSDN)</a> ought to do the trick. That will get you the name to pass to CreateDC for printing.</p> http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/95519#95519 2 Answer by christopher_f for How do I reward my developers for the little things they get right? christopher_f 2008-09-18T18:42:04Z 2008-09-18T18:42:04Z <p>Say "Thank you", and give them something more challenging (and important) next time out. Make sure they know that they are being given greater responsibility as a result of their success. For problem solvers, that feels good.</p> <p>Find out what motivates the individuals on your team. There's no one size fits all solution. Some people like to be appreciated daily, others prefer it only when they do something they (as others noted) are proud of. </p> http://stackoverflow.com/questions/86333/what-design-pattern-do-you-use-the-most/86398#86398 1 Answer by christopher_f for What design pattern do you use the most? christopher_f 2008-09-17T18:57:26Z 2008-09-17T18:57:26Z <p>Dependency Injection, followed by Humble Dialog.</p> http://stackoverflow.com/questions/75311/what-does-it-take-to-get-you-in-the-zone/75409#75409 1 Answer by christopher_f for What does it take to get you in the zone? christopher_f 2008-09-16T18:24:30Z 2008-09-16T18:24:30Z <p>1) I need to be at ease. Physical comfort is crucial here. I keep things arranged as I like them around me. A good level of hydration is important, I keep water at my desk in a large athletic bottle. </p> <p>2) I need to minimize distractions. I turn off email and IM notifications. I find a quiet work area, or one with colleagues who know the protocol for working with developers. I make sure I've dealt with anything that can be dealt with quickly, so it doesn't bother me.</p> <p>3) I need a large block of unscheduled time.</p> <p>4) I need an interesting problem, or a well defined set of goals. </p> http://stackoverflow.com/questions/1819603/using-map-in-c/1819620#1819620 Comment by christopher_f on using <map> in C++ christopher_f 2009-11-30T22:49:56Z 2009-11-30T22:49:56Z If you do use a smart pointer, avoid auto_ptr. You don't want transfer of ownership on assignment in this case. http://stackoverflow.com/questions/298577/overriding-a-member-variable-in-c/298590#298590 Comment by christopher_f on Overriding a member variable in C++ christopher_f 2008-11-19T18:32:47Z 2008-11-19T18:32:47Z You're totally right. That's what I get for commenting at the end of the day. http://stackoverflow.com/questions/298577/overriding-a-member-variable-in-c/298590#298590 Comment by christopher_f on Overriding a member variable in C++ christopher_f 2008-11-19T01:22:39Z 2008-11-19T01:22:39Z This works so long as there are no void SetVar(MyVar*) (or equivalent) functions in MyBase. Although the assert will catch this at run time, it renders the design fragile. http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada/214093#214093 Comment by christopher_f on Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? christopher_f 2008-10-17T23:45:12Z 2008-10-17T23:45:12Z Symbols are no problem. Forcing the branch to throw an exception, shows conclusively that CMemoryException* is being thrown. That complicates things a touch, but it's good to know what's really going on. Thanks again! http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada/214093#214093 Comment by christopher_f on Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? christopher_f 2008-10-17T22:56:06Z 2008-10-17T22:56:06Z Thank you! We do link to the standard C++ runtime as a DLL, which means MFC exceptions for everyone. Unfortunately, one of the major targets of this app is a system without virtual memory, so allocation checking is required, ugh. http://stackoverflow.com/questions/213952/do-c-static-libraries-without-mfc-that-are-linked-to-an-mfc-project-throw-bada/213988#213988 Comment by christopher_f on Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*? christopher_f 2008-10-17T22:08:36Z 2008-10-17T22:08:36Z This stumped my peers as well, and no one could come up with a good way to force new to fail without overloading new in the first place. Arg :) http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140567#140567 Comment by christopher_f on What do your code reviews involve and what patterns are successful? christopher_f 2008-09-26T16:50:43Z 2008-09-26T16:50:43Z I'm a big fan of this tool as well. Commenting inline on the code in an asynchronous manner catches the vast majority of issues. That makes developers much more willing to do desk checks and in person walk-throughs for the bits that weren't obvious. http://stackoverflow.com/questions/135651/learning-unit-testing/135677#135677 Comment by christopher_f on Learning Unit Testing christopher_f 2008-09-25T20:16:48Z 2008-09-25T20:16:48Z Absolutely my favorite book about unit testing. It helped me &quot;get&quot; unit testing by showing me what good unit test code looks like, and how to get there from the mess I was writing before I read the book. http://stackoverflow.com/questions/134095/so-youve-entered-the-wild-rainforest-of-someones-new-api-how-do-you-find-your/134223#134223 Comment by christopher_f on So you've entered the wild rainforest of someone's new API. How do you find your way through? christopher_f 2008-09-25T16:46:40Z 2008-09-25T16:46:40Z Writing your own docs is a good idea, for sure. I keep a dev journal, and write down any decisions or discoveries that I make during a day. I don't refer to it that much, but the act of writing things down really helps solidify concepts in my mind.