User Nick - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:58:07Z http://stackoverflow.com/feeds/user/26240 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183788/c-c-compiler-warnings-do-you-clean-up-all-your-code-to-remove-them-or-leave/184206#184206 5 Answer by Nick for C / C++ compiler warnings: do you clean up all your code to remove them or leave them in? Nick 2008-10-08T18:37:33Z 2009-12-02T22:20:17Z <p>There are some instances where I will leave warnings in code, or where it's infeasible to clean them up (although I do remove the ones I can). For example:</p> <ul> <li>If you have something you're working on, and you know it needs more work/attention, leaving a warning in place to indicate this can be appropriate</li> <li>If you're compiling C++ with /clr, there are several warnings about things which cause native code to be generated; it can be cumbersome to suppress all these warnings when the codebase cannot be functionally changed</li> <li>Cleaning up warnings when you don't understand what the fix does. I've done this a couple times with PC-Lint warning, and ended up introducing bugs. If you don't know what the exact effect of the change is (eg: C-style casts to eliminate warnings), DO NOT do it. Figure out the warning, or leave the code alone is my advice.</li> </ul> <p>Anyway, those are the instances off the top of my head where leaving warnings might be appropriate.</p> http://stackoverflow.com/questions/1799507/combo-box-inside-of-list-control-unmanaged-c/1799646#1799646 1 Answer by Nick for Combo box inside of list control? (Unmanaged C++) Nick 2009-11-25T20:09:08Z 2009-11-25T20:09:08Z <p>You could also look at some 3rd party controls which allow this (it's not really supported in the default MS common controls). For example, the <a href="http://www.codeproject.com/KB/MFC/UltimateGrid%5FEditing.aspx" rel="nofollow">Ultimate Grid</a> allows this sort of thing. It's not well supported, but it is open source, so if nothing else it might provide some reference for what would be involved in building it.</p> <p>There are probably also other commercial vendors for these controls, but I'm not going to recommend anything in particular (you can always google/etc.).</p> http://stackoverflow.com/questions/1189939/why-dont-firefox-and-other-apps-honor-my-windows-xp-settings/1189957#1189957 3 Answer by Nick for Why don't Firefox and other apps honor my Windows XP settings? Nick 2009-07-27T18:55:25Z 2009-07-27T18:55:25Z <p>I don't know definitively, but I would guess it has something to do with the Windows button style which specifies the default button. If Firefox is not setting this window style on their button (which they probably would not, if doing their own UI style for the default button), then Windows would not be aware of it, hence the behavior. Just a guess, though.</p> <p>For reference: <a href="http://msdn.microsoft.com/en-us/library/bb775951%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb775951%28VS.85%29.aspx</a> (BS_DEFPUSHBUTTON)</p> http://stackoverflow.com/questions/1173962/run-code-before-every-function-call-for-a-class-in-c/1174593#1174593 1 Answer by Nick for Run Code Before Every Function Call for a Class in C++ Nick 2009-07-23T21:27:00Z 2009-07-23T21:27:00Z <p>Another thing you could consider is using something like the [boost/C++0X] shared_ptr wrapper, where you call your custom function on the '->' overload before returning the class instance pointer. It involves modifying usage but not the underlying class, and I've used it a couple times to achieve the same effect. Just another thought.</p> http://stackoverflow.com/questions/198402/missing-desired-features-in-visual-c 1 Missing/desired features in Visual C++ Nick 2008-10-13T17:46:58Z 2009-06-18T11:53:05Z <p>I can't find another topic where this has already been asked, so I'm starting one... if there is one, feel free to link it and close this.</p> <p>What feature do you feel is most missing from Visual C++?</p> <p>Microsoft has been adding nice features for C#/VB.NET development for the last couple versions, but C++ has felt a bit neglected. I don't have much experience with other IDE's, but there must be some advances in C++ IDE development in the last five years that people like. I'm very curious what people think are the most glaring lacking features missing from Visual C++.</p> <p>Notes:</p> <ul> <li>No, I don't work for MS, I just use their stuff a lot, and want to see it get better</li> <li>This is specific to native C++ development, although I suppose C++/CLI should be fair game too</li> <li>Feel free to add multiple features as separate entries; that way people can vote up things they find the most lacking</li> </ul> http://stackoverflow.com/questions/865735/wpf-memory-fragmentation/867000#867000 0 Answer by Nick for WPF memory fragmentation Nick 2009-05-15T04:42:30Z 2009-05-15T04:42:30Z <p>It sounds like you want to be more careful about your memory management in general; ie: either run the processing engine in a separate address space which carefully manages memory, or pre-allocate a sufficiently large chunk before memory gets too fragmented and manage images in that area only. If you're sharing address space with the .NET runtime in a long-running process, and you need large contiguous areas, it's always going to potentially fail at some point. Just my 2c.</p> http://stackoverflow.com/questions/866648/building-with-boost-through-visual-studio-is-not-picking-the-correct-vs-version-o/866978#866978 2 Answer by Nick for Building with Boost through Visual Studio is not picking the correct VS version or statically linked libs Nick 2009-05-15T04:30:30Z 2009-05-15T04:30:30Z <p>I believe that flag ('s') is indicative of static linking; ie: linking the c-runtime libraries statically. It would be a project setting for you app.</p> <p>Also, for the v80/v90 issue, I have had similar when I had the v90 compiler installed with some part of the platform SDK. If you're getting v90 in the linker object name, chances are you're actually building with the v90 compiler (which is possible within the 2005 IDE, depending on path settings and what's installed). Shouldn't be an issue, as long as everything matches.</p> http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized 4 Why does this compile (used in function before initialized)? Nick 2009-04-08T21:21:11Z 2009-04-09T18:20:50Z <p>Consider this code (using CString because it's familiar and easy to see when not constructed, but nothing special about the class), tested under Visual Studio 2008:</p> <pre><code>CString DoSomething( const CString&amp; sString ) { return sString; } CString sTest1 = DoSomething( sTest1 ); // Compiles (no warnings), fails at runtime CString sTest2( DoSomething( sTest2 ) ); // Doesn't compile CString sTest3; sTest3 = DoSomething( sTest3 ); // Compiles, self-assignment, works </code></pre> <p>As I understand the C++ standard, Test1 can be compiled into Test2 automatically as a compile-time optimization, provided the appropriate constructor is available (which, by default, will be generated to be identical to the first test). Notably, however, the behavior is not the same as Test3, which will work correctly.</p> <p>Now I understand why Test1 does not work, and why Test2 does not compile. What I am curious about is why Test1 compiles in the first place? Is this permitted in the standard, open for interpretation, a flaw in VS2008's compiler, a deficiency in init-before-use static checking, or what? Is there any way to force the compiler to at least give a warning in this case (Test1 appears to compile clean with max warning level under VS2008)? What would be the justification for the C++ specification permitting this construct?</p> <p>Edit: Alternatively, is there any way to force the compiler to compile Test1 as Test2 (and thus trigger the error)?</p> <p>Edit to add verbatim error message for Test2: error C2065: 'sTest2' : undeclared identifier</p> http://stackoverflow.com/questions/714504/open-source-visual-studio-project-distribution-nightmare/716085#716085 0 Answer by Nick for Open source Visual Studio project distribution nightmare... Nick 2009-04-03T23:30:34Z 2009-04-03T23:30:34Z <p>One solution I have seen utilized by commercial Windows libraries is naming the solution files with the VS version as a suffix (eg: Project_VS2005.sln, Project_VS2008.sln, etc.). You still have to keep them in sync, but you don't have to change file paths, or include directories, or modify the actual solution files much; just keep multiple files, one for each VS version which is supported. You have to do the same thing for the project files, but at least you don't have to change the contents around to support different directory structures unless you want to support building side-by-side with multiple VS versions, and in the case where you do you only have to change the output settings for each different project file.</p> <p>Not saying it's a great solution, but rather just another option.</p> http://stackoverflow.com/questions/670101/c-functions-ampersand-vs-asterisk/670590#670590 0 Answer by Nick for C++ functions: ampersand vs asterisk Nick 2009-03-22T05:28:37Z 2009-03-22T05:28:37Z <p>I like passing by reference if NULL does not have significance, but I can see the arguments for both. If you're careful about coding you could probably eliminate the accidental pass-by-reference objection by making sure you always pass your variables by const reference, eg:</p> <pre><code>myfunc( const_cast&lt; const int&amp; &gt;( a ) ); // Alternatively, this approach may require additional handling // in the function, but it's cleaner at call point myfunc( boost::cref( a ) ); </code></pre> <p>That's a lot of extra code for little benefit, though. As Kenny pointed out, C# addressed this from the opposite end (requiring specific passing by reference), but that's not an option for C++ (unless, for example, you wrote your functions to take a reference wrapper as their parameter, like boost::ref(param)), eg:</p> <pre><code>void myfunc( const boost::reference_wrapper&lt; int &gt;&amp; a ) { ... } </code></pre> <p>Fixing the pointer problem is more problematic, though... there's no compile-time way to ensure the pointer is valid, so you end up with either run time problems for pointer issues, or run time checks, or both. Tis the nature of pointers.</p> <p>Anyway, that's just my opinion, for what it's worth.</p> http://stackoverflow.com/questions/666672/forcing-my-mfc-app-to-run-as-administrator-on-vista/666963#666963 0 Answer by Nick for Forcing my MFC app to run as Administrator on Vista Nick 2009-03-20T16:42:03Z 2009-03-20T16:42:03Z <p>You can do either. You can add a similar line with a #pragma to add the requireAdministrator directive, or you can set it in the property sheets in VS2008.</p> http://stackoverflow.com/questions/651060/returning-an-object-as-a-property-in-atl/651250#651250 2 Answer by Nick for Returning an object as a property in ATL Nick 2009-03-16T16:54:57Z 2009-03-16T16:54:57Z <p>If you're going to call it from an automation language, you'll need the interface returned to be derived from IDispatch, and you'll likely need to return it at least as an IDispatch**. For retval I think that's good enough; for simple [out] parameters you need to pass it as a VARIANT* (with the variant type set to VT_LPDISPATCH) so that the automation language can understand it.</p> <p>I'm not sure if there's a good tutorial; it's been a while since I looked for a comprehensive reference. The best advice I could give would be to make sure everything you're passing is automation compatible (eg: is a type which you can put into a VARIANT), and that should take care of 80% of your problems. It's very doable, though; just read up on MSDN and you should be fine.</p> http://stackoverflow.com/questions/641935/wasapi-prevents-windows-automatic-suspend/643982#643982 0 Answer by Nick for WASAPI prevents Windows automatic suspend? Nick 2009-03-13T18:22:54Z 2009-03-13T18:22:54Z <p>I believe there's a function in the power management API which allows an app to tell the OS that it doesn't want the system to go into power save mode during some time (I think it's an on/off type function). If something in WASAPI is calling that method, there may be nothing you can do. This would make sense with the hardware button behavior, since the power management service isn't forced to honor the app request depending on how the power mode is activated.</p> <p>As for work-around, I don't know. One thing I might try is to read the power save timeout information from the power management API, and then suspend recording if the system is nearing the power save threshold; I have no idea how hard that would be though. Good luck. :)</p> http://stackoverflow.com/questions/640476/ms-dev-studio-2005-ignores-preprocessor-directives-during-compile/640750#640750 1 Answer by Nick for MS Dev Studio 2005 Ignores Preprocessor directives during compile Nick 2009-03-12T22:30:49Z 2009-03-12T22:30:49Z <p>Make sure that the project configuration which is being built in the selected solution configuration is the same as the one you're configuring the properties for, and/or that you're configuring the properties for all project configurations. A common problem with new VS installations is that the current active solution configuration is system-specific, and may default to something not matching yours (eg: Release vs Debug).</p> <p>You can see the project config in the build output, and/or check it in the Configuration Manager.</p> http://stackoverflow.com/questions/624354/what-would-it-take-for-people-to-move-away-from-c/624886#624886 6 Answer by Nick for What would it take for people to move away from C++? Nick 2009-03-09T03:05:28Z 2009-03-09T03:05:28Z <p>For me, I prefer C++ because:</p> <ul> <li>It's still a reasonably straight-forward representation of what the hardware is going to do, or close enough that you can make educated deductions about actual program behavior and performance</li> <li>It's flexible enough to allow me to use or implement most programming paradigms</li> <li>It has high compatibility with other libraries and modules, and the largest existing support base of reference and directly usable code</li> <li>Most of the "warts" are easy to eliminate with good programming practices and/or utility libraries, as opposed to other languages where "warts" are less fixable (eg: you can easily fix memory leaks by using smart pointers, and easily diagnose memory corruption with direct memory analysis, you cannot easily debug memory corruption problems in a higher level language like C#, and yes I've had them)</li> <li>C++ apps can generally be made to run on any OS versions with the only limitation being effort; higher level languages typically require runtimes which may or may not be present</li> </ul> <p>What would it take for me to prefer something else for main development? Well, in addition to addressing the above reasons in some manner, the other "higher-level" language would have to convey the feeling that I would still be able to implement and debug everything I can do in C++. Really the only thing which has come close for me is C++/CLI, but it's syntactically even worse, harder to understand, and fails the "runtime required" test (and arguably doesn't add much in terms of the other desired benefits).</p> <p>I'd guess in the next 30+ years before I retire, I'll be paid to write something other than C++. There are certainly development areas where C++ isn't preferable, and strong motivations for language vendors to force developers into higher-level languages running on proprietary and/or vendor-controlled runtimes (eg: Java, C#, etc.). For now, though, for me, C++ is still the right tool for the job, and I enjoy getting paid to keep writing it. :)</p> http://stackoverflow.com/questions/599308/proper-stack-and-heap-usage-in-c/599449#599449 1 Answer by Nick for Proper stack and heap usage in C++? Nick 2009-03-01T07:46:25Z 2009-03-01T07:46:25Z <p>To add to the other answers, it can also be about performance, at least a little bit. Not that you should worry about this unless it's relevant for you, but:</p> <p>Allocating in the heap requires finding a tracking a block of memory, which is not a constant-time operation (and takes some cycles and overhead). This can get slower as memory becomes fragmented, and/or you're getting close to using 100% of your address space. On the other hand, stack allocations are constant-time, basically "free" operations.</p> <p>Another thing to consider (again, really only important if it becomes an issue) is that typically the stack size is fixed, and can be much lower than the heap size. So if you're allocating large objects or many small objects, you probably want to use the heap; if you run out of stack space, the runtime will throw the site titular exception. Not usually a big deal, but another thing to consider.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/584503/different-methods-to-use-a-class-struct-c/584512#584512 0 Answer by Nick for Different methods to use a class/struct - C++ Nick 2009-02-25T02:32:20Z 2009-02-25T02:32:20Z <p>Identical as written (as far as I can tell).</p> <p>As other people have said, that construct is usually used to limit scope of something, but in your example, there's no difference.</p> http://stackoverflow.com/questions/580375/how-to-generate-a-compiler-warning-error-when-object-sliced/580512#580512 4 Answer by Nick for How to generate a compiler warning/error when object sliced Nick 2009-02-24T04:52:13Z 2009-02-24T04:52:13Z <p>I would suggest adding a constructor to your base class which takes a const reference to the derived class explicitly (with a forward declaration). In my simple test app, this constructor gets called in the slicing case. You could then at least get a run-time assertion, and you could probably get a compile-time assertion with clever use of templates (eg: instantiate a template in a way which generates a compile-time assertion in that constructor). There may also be compiler-specific ways to get compile time warnings or errors when you call explicit functions; for example, you can use "__declspec(deprecated)" for the "slice constructor" in Visual Studio to get a compile-time warning, at least in the function-call case.</p> <p>So in your example, the code would look like this (for Visual Studio):</p> <pre><code>class Base { ... __declspec(deprecated) Base( const Derived&amp; oOther ) { // Static assert here if possible... } ... </code></pre> <p>This works in my test (compile-time warning). Note that it doesn't solve the copy case, but a similarly-constructed assignment operator should do the trick there.</p> <p>Hope this helps. :)</p> http://stackoverflow.com/questions/576610/which-is-better-code-for-converting-bstr-parameters-to-ansi-in-c-c/578783#578783 2 Answer by Nick for Which is better code for converting BSTR parameters to ANSI in C/C++? Nick 2009-02-23T18:41:35Z 2009-02-23T18:41:35Z <p>Note:</p> <p>If you use the ATL macros, eg: COLE2[C]DestinationType[Ex] (which you probably should), be sure to use the 'C' versions as possible, not the non-const versions as you have written. They may be equivalent for explicit BSTR->ASCII conversions (ie: COLE2A), but for conversions where there is no actual conversion required (eg: COLE2T when compiling for UNICODE), the 'C' versions can expand to noops, whereas the non-'C' versions will still copy if the source string is const (because you are expressing that you need the resulting string to be non-const).</p> <p>Also of note:</p> <p>The new ATL7 macros don't always require USES_CONVERSION, however they allocate temporary r-value objects, whereas the old macros use _alloca. This may or may not be important, depending on your usage (for example, DO NOT use the old macros in a loop which runs a large number of times, you can blow out the stack doing so).</p> http://stackoverflow.com/questions/577330/map-file-analysis-wheres-my-code-size-comes-from/578744#578744 0 Answer by Nick for MAP file analysis - where's my code size comes from? Nick 2009-02-23T18:33:03Z 2009-02-23T18:33:03Z <p>No suggestion for a tool, but a guess as to a possible cause: do you have incremental linking enabled? This can cause expansion during subsequent builds...</p> <p>The linker will strip unused symbols if you're compiling with /opt:ref, so if you're using that and not using incremental linking, I would expect expansion of the binaries to be only a result of actual new code being added. That's as far as I know... hope it helps a little.</p> http://stackoverflow.com/questions/578293/are-things-like-afxmsg-decorators-still-used-by-vs-mfc/578369#578369 2 Answer by Nick for Are things like "afx_msg" decorators still used by VS/MFC? Nick 2009-02-23T16:51:10Z 2009-02-23T16:51:10Z <p>AFAIK, afx_msg is no longer used. The other marker were used to help CW figure out where to put things, and some of them may still be used (eg: message map location in the .cpp files). The ones in the header files are probably more safe to remove, but I wouldn't take them out arbitrarily.</p> <p>One thing you could do: start a new dummy MFC project in your current VS version, add a window class and a few handlers, and observe the notations currently created. Anything not put in is probably no longer used, and anything still inserted is probably still used in some form).</p> <p>PS: MS is well aware of the issues with the current CW editing, and I'm told they will be addressed to a large extent in VS2010... we shall see.</p> http://stackoverflow.com/questions/571652/what-is-the-best-way-to-handle-multiple-object-dependencies-in-c/571697#571697 1 Answer by Nick for What is the best way to handle multiple object dependencies in C++? Nick 2009-02-20T23:50:14Z 2009-02-20T23:50:14Z <p>I use globally-named instances for most of my global state objects. The pattern is similar to the traditional singleton, except that with the singleton, purists will insist its constructor also be private to prevent independent construction, whereas my pattern allows independent construction as necessary (ie: my singleton template doesn't require the singleton class's constructor be private). Otherwise the pattern is similar to what Vlad wrote out.</p> <p>One thing to be careful of: if you need to de-allocate your singletons at program exit (for example, you have an imposed requirement that you not leak memory you allocated), handling that can get very messy very fast. Describing all the things I have had to muck with to try to achieve no memory leaks using singletons would take up way to much space, and many of them are not pretty; so if you need cleanup, consider using simple globals instead (as methodologically distasteful as that may be).</p> http://stackoverflow.com/questions/552253/efficient-way-of-extracting-specific-numerical-attributes-from-xml/552274#552274 0 Answer by Nick for Efficient way of extracting specific numerical attributes from XML Nick 2009-02-16T04:33:21Z 2009-02-16T04:33:21Z <p>I'd guess a regex of some sort is going to be your best option for efficiency. It's going to be faster than parsing the XML into any sort of structural construct, and as long as you can extract all the information you will need in one pass, it's likely the most efficient method.</p> http://stackoverflow.com/questions/543062/simple-boost-submissions-advice 4 Simple boost submissions; advice? Nick 2009-02-12T20:19:01Z 2009-02-12T23:43:32Z <p>Looking for some general advice...</p> <p>I've been using boost for a while, and I've written several small modules and function (eg: see <a href="http://stackoverflow.com/questions/209793/any-way-to-cast-with-class-operator-only">this SO question</a>) which I think cold be appropriate for inclusion in boost. I've been to the project pages to see about the submission process, but it seems like it's "be on the inside, or don't bother". I can subscribe to the developers mailing list, but I'm not sure I'm qualified to post there: I'm certainly not intimately familiar with all the various boost modules, and not nearly as well-versed in template meta-programming as the people actively participating.</p> <p>Is there an avenue that I'm missing for "normal" people to send ideas for things which could be incorporated into boost? Or is boost kinda a "open in name only, unless you make it a full-time job" type of project?</p> http://stackoverflow.com/questions/535713/how-do-you-make-sense-of-the-error-cannot-convert-from-int-to-int/535787#535787 4 Answer by Nick for How do you make sense of the error: cannot convert from 'int []' to 'int []' Nick 2009-02-11T07:35:12Z 2009-02-11T07:35:12Z <p>When I'm trying to explain something, I always try to go down to the lowest level, and build up from there. That's they way I like to learn things, and I find that people are more comfortable if you start with the basics which they know, and build up from there.</p> <p>In this case, I'd probably start with something like:</p> <blockquote> <p>The compiler is trying to do the assignment, because you wrote an assignment operation. In C++, you can't directly assign to an array, because it has no built-in assignment operator (of any kind, only initializer and indexing is supported for arrays). Because C++ supports overloaded operators for types, the compiler then looks for an overloaded assignment operator for the "assigned-to" type which takes the "assigned-from" type as its argument. Since there's also no overloaded operator for int[] which takes int[] as an argument, the compiler errors on the line, and the errors is telling you why the compiler can't process the line.</p> </blockquote> <p>Yes, it's probably overkill vs just saying something about knowledge of size, incomplete types, etc. I realize it's also not complete (eg: no discussion of initializer assignment vs normal assignment, etc.). However, my goal is usually to get people to where they can figure out the next answer themselves, and for that you usually want to lay out the thought process for arriving at the answer.</p> http://stackoverflow.com/questions/532338/what-to-do-with-star-developers-who-dont-document-their-work/535330#535330 0 Answer by Nick for What to do with star developers who don't document their work. Nick 2009-02-11T03:42:28Z 2009-02-11T03:42:28Z <p>Here's another tact you could try, in addition to many of the other suggestions:</p> <p>It seems you're pre-disposed to think that your developer's behavior and methods are bad, for whatever reason. Assuming you have discussed them with him and he has not provided justification to your satisfaction (or willingness to change), I'd say you have two obvious choices: get rid of him, or live with it. I would suggest that, in this case, you be very up-front with your demands of how he write his code, and let him choose to take it or leave it.</p> <p>As an example, I had a previous employer who (after a management shakeup) decided that the developers were no longer allowed to use 'assert' in code, because they considered it unnecessary clutter and not consistent with the existing style of now "in charge" group (who wrote very direct low-level C style code with no assertions or defensive programming techniques). The management and I had a direct discussion, they told me I needed to adapt to their style or leave, and I decided to leave. Overall, I think it worked out best for both parties.</p> <p>Not everybody is going to have the same opinions on coding, code guidelines, or development processes, and at the end of the day, the person paying the money makes the rules (balanced against the need to actually produce things). The more up-front you are about what you require, the less resentful developers will be.</p> http://stackoverflow.com/questions/530420/linking-to-a-static-lib-that-links-to-a-static-lib/530437#530437 1 Answer by Nick for Linking to a static lib that links to a static lib Nick 2009-02-09T22:53:56Z 2009-02-09T22:53:56Z <p>Sure. Just make sure the n-th level library project is in the same solution, and the immediately dependent library has a dependency on it. VS should rebuild both. This works for native C++ at least, and should work for managed too IFAIK.</p> http://stackoverflow.com/questions/518206/is-there-a-way-to-allow-a-windows-service-unmanaged-c-to-write-files-on-a-sha/519339#519339 2 Answer by Nick for Is there a way to allow a Windows service (unmanaged c++) to write files on a shared network folder? Nick 2009-02-06T06:40:18Z 2009-02-06T17:50:02Z <p>You should use UNC paths (as Scott suggested), and run the system under an explicit account which has access to the network resource; that should work.</p> <p>It <em>probably</em> will not work under LocalSystem because that's a special user account in Windows with local system access only. LocalSystem had no network access in NT4, and in 2000+ it's treated as the computer accounts for network access purposes, and subject to access restrictions in the local security policy. See <a href="http://msdn.microsoft.com/en-us/library/ms677973(VS.85).aspx" rel="nofollow">this page</a> for more info.</p> <p>Short answer: use an explicit account to run the service which has access to the UNC path. :)</p> http://stackoverflow.com/questions/518193/how-do-i-use-ole-db-to-access-a-dbf-file-in-an-com-c-atl-application/518433#518433 1 Answer by Nick for How do I use OLE-DB to access a dbf file in an COM/C++ ATL application? Nick 2009-02-05T23:16:38Z 2009-02-05T23:16:38Z <p>I would use ADO; it's by far the quickest way to get going, even with dealing with the COM aspects of it. Start <a href="http://msdn.microsoft.com/en-us/library/ms675532(VS.85).aspx" rel="nofollow">here</a>. It's much easier than rolling your own Consumer implementation, unless you really need to lower-level access that doing OLEDB directly provides.</p> http://stackoverflow.com/questions/516763/open-a-socket-using-createfile/517448#517448 0 Answer by Nick for Open a socket using CreateFile Nick 2009-02-05T19:13:43Z 2009-02-05T19:13:43Z <p>I don't believe you can manipulate sockets with CreateFile. Sockets are an abstraction imported from BSD (iirc) and implemented in a name-compatible way (originally via winsick.h, and currently winsock2.h). I don't think MS ever added support for sockets to CreateFile.</p> <p>More rationale: Most (everything?) CreateFile manipulates returns a native Windows handle. Because sockets are a non-native abstraction, they don't have a native handle in the OS, so it wouldn't make sense for CreateFile to handle them.</p> http://stackoverflow.com/questions/198402/missing-desired-features-in-visual-c/1012236#1012236 Comment by Nick on Missing/desired features in Visual C++ Nick 2009-06-18T20:09:24Z 2009-06-18T20:09:24Z Note that I'm not saying you're wrong, or your suggestion is not valid, just that the example given to justify it is not particularly applicable, and you may want to investigate further if this feature would really actually help you. http://stackoverflow.com/questions/198402/missing-desired-features-in-visual-c/1012236#1012236 Comment by Nick on Missing/desired features in Visual C++ Nick 2009-06-18T20:08:11Z 2009-06-18T20:08:11Z In all fairness to Microsoft, your argument is compiler-specific, and may not apply to the MSVC compiler. Unless you have counter-examples specific to the MSVC compiler, I'd be somewhat inclined to believe MS; after all, several very competent software engineers have stopped writing optimized assembly for their performance-critical sections when using MSVC, because (in their estimation) they can't reliably do better than the compiler. http://stackoverflow.com/questions/493959/creating-software-derivative-works-from-open-source/493976#493976 Comment by Nick on Creating software derivative works from open source Nick 2009-05-14T18:35:56Z 2009-05-14T18:35:56Z Most people would likely argue that in the absence of restrictions, you have the right to distribute/license software you write as you see fit. The GPL (and other restrictive licenses) restrict this right, and impose restrictions on what you can do with your code in a derived work. As I said, I'm not arguing the merits of attaching DRM to your code, mearly that the GPL does so, and thus is more restrictive than other, more truly &quot;open&quot; licenses. http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-09T18:19:58Z 2009-04-09T18:19:58Z The error for Test2 is the standard &quot;symbol not defined&quot; error. I'll update the post. http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/732080#732080 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T22:21:58Z 2009-04-08T22:21:58Z But in that case, wouldn't the spec say that sTest1 should be initialized by the time its declaration is done? That is, logically, if sTest1 is available by the '=', then it should be constructed before the function call, right? http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/731978#731978 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T22:09:52Z 2009-04-08T22:09:52Z -Winit-self won't help in the general case; it works for the simple case, but if DoSomething is non-trivial (ie: doesn't just return the string), it doesn't work. http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/731920#731920 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T21:39:07Z 2009-04-08T21:39:07Z That's what's funky: Test1 can become Test2 inside the compiler, and Test2 fails to compile (as desired), yet Test1 will compile, even though it produces the behavior which motivates the Test2 compilation error. http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/731924#731924 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T21:37:09Z 2009-04-08T21:37:09Z litb's answer appears to be directly on point, thanks. Any known way to get the compiler to issue a warning, or am I stuck with &quot;try to make sure nobody writes this&quot;? http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/731922#731922 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T21:33:45Z 2009-04-08T21:33:45Z That's correct on the behavior; my question is 'why'? http://stackoverflow.com/questions/731908/why-does-this-compile-used-in-function-before-initialized/731920#731920 Comment by Nick on Why does this compile (used in function before initialized)? Nick 2009-04-08T21:32:11Z 2009-04-08T21:32:11Z That's incorrect. I can break inside the function, and verify that the CString constructor has not yet been called (which is why it fails at runtime). http://stackoverflow.com/questions/670101/c-functions-ampersand-vs-asterisk/670590#670590 Comment by Nick on C++ functions: ampersand vs asterisk Nick 2009-03-24T18:17:13Z 2009-03-24T18:17:13Z The other [minor] reason I prefer const ref to value is that if you accidentally modify the input value in the function, you'll get an error. Admittedly it's a small benefit, though. http://stackoverflow.com/questions/670101/c-functions-ampersand-vs-asterisk/670590#670590 Comment by Nick on C++ functions: ampersand vs asterisk Nick 2009-03-24T18:16:34Z 2009-03-24T18:16:34Z It wasn't obvious to me, but I haven't looked at the code, or analyzed the eventual compiled binary; I was relying on the idea that const ref will be at least as fast as value, and might be faster. If it's obviously identical, then there's no reason to choose ref for speed. :) http://stackoverflow.com/questions/670101/c-functions-ampersand-vs-asterisk/670590#670590 Comment by Nick on C++ functions: ampersand vs asterisk Nick 2009-03-22T18:13:05Z 2009-03-22T18:13:05Z Because it's a class, and passing it by const reference is probably faster than copying it (although it is copyable). Both will work; this way is probably less overhead. http://stackoverflow.com/questions/616977/whats-a-good-code-coverage-tool-for-use-with-visual-studio-c/617110#617110 Comment by Nick on What's a good code coverage tool for use with Visual Studio (C++)? Nick 2009-03-06T00:08:22Z 2009-03-06T00:08:22Z I've had bad experiences with Purify, instrumentation caused changes in program behavior, etc. Their updates were also virtually non-existent for native code support for at least the last five years. I would not recommend it based on my experience. http://stackoverflow.com/questions/552253/efficient-way-of-extracting-specific-numerical-attributes-from-xml/552276#552276 Comment by Nick on Efficient way of extracting specific numerical attributes from XML Nick 2009-02-16T06:58:55Z 2009-02-16T06:58:55Z FYI, you can get/use a regex that will not load the entire file, but work on the FILE* instead (using sequential or random access, depending on the iterator type). I don't recall if this was native in boost, but I know it's possible due to the generic API.