User Owen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T06:03:55Z http://stackoverflow.com/feeds/user/4790 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800544/are-there-well-defined-size-limits-in-formatmessage 0 Are there well-defined size limits in FormatMessage? Owen 2009-11-25T23:00:05Z 2009-11-26T13:54:57Z <p>I am having a problem when arguments passed to <code>FormatMessage</code> are too long.</p> <pre><code>void testMessage(UINT id, ...) { va_list argList; va_start(argList, id); LPTSTR buff = NULL; const char* str = "The following value is invalid: %1"; DWORD success = FormatMessage(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ALLOCATE_BUFFER, str, 0, 0, (LPSTR) &amp;buff, 0, &amp;argList); if(0 == success) { DWORD err = GetLastError(); //... } va_end(argList); //... } int main(int argc, char** argv) { const char* arg = NULL; // ... // Initialize arg to some big string about 33,000 bytes long. // ... test(0, arg); } </code></pre> <p>The error I get is <code>ERROR_MORE_DATA</code> (234). When I reduce the size of <code>arg</code> to about 32,000 bytes, the problem doesn't occur, but it's unclear whether the restriction has to do with the size of arguments passed in or the resulting total size of the string generated. The <a href="http://msdn.microsoft.com/en-us/library/ms679351%28VS.85%29.aspx" rel="nofollow">MSDN page</a> on <code>FormatMessage</code> says about the <code>lpBuffer</code> parameter, "This buffer cannot be larger than 64K bytes."</p> <p>I can easily get around this by doing a bit more error checking and putting some sane restrictions on the size of the arguments I pass into this function, but for my and others' future reference it would be great to know what the real limits are.</p> http://stackoverflow.com/questions/377164/whats-your-preferred-pointer-declaration-style-and-why 3 What's your preferred pointer declaration style, and why? Owen 2008-12-18T08:06:31Z 2009-11-01T16:04:46Z <p>I know this is about as bad as it gets for "religious" issues, as Jeff calls them. But I want to know why the people who disagree with me on this do so, and hear their justification for their horrific style. I googled for a while and couldn't find a style guide talking about this.</p> <p>So here's how I feel pointers (and references) should be declared:</p> <pre><code>int* pointer = NULL; int&amp; ref = *pointer; int*&amp; pointer_ref = pointer; </code></pre> <p>The asterisk or ampersand goes with the <em>type</em>, because it modifies the <em>type</em> of the variable being declared.</p> <p>EDIT: I hate to keep repeating the word, but when I say it modifies the type I'm speaking <em>semantically</em>. "<code>int* something;</code>" would translate into English as something like "I declare something, which is a pointer to an integer." The "pointer" goes along with the "integer" much more so than it does with the "something." In contrast, the other uses of the ampersand and asterisk, as address-of and dereferencing operators, act on a variable.</p> <p>Here are the other two styles (maybe there are more but I really hope not):</p> <pre><code>int *ugly_but_common; int * uglier_but_fortunately_less_common; </code></pre> <p>Why? Really, why? I can never think of a case where the second is appropriate, and the first only suitable perhaps with something like:</p> <pre><code>int *hag, *beast; </code></pre> <p>But come now... multiple variable declarations on one line is kind of ugly form in itself already.</p> http://stackoverflow.com/questions/1442078/how-to-avoid-null-stacktrace-in-dphblockinformation 0 How to avoid "(null)" StackTrace in DPH_BLOCK_INFORMATION ? Owen 2009-09-18T00:41:57Z 2009-09-18T11:26:42Z <p>I'm having a blast tracking down some heap corruption. I've enabled standard page heap verification with</p> <pre><code>gflags /p /enable myprogram.exe </code></pre> <p>and this succeeds in confirming the corruption:</p> <pre>=========================================================== VERIFIER STOP 00000008: pid 0x1040: corrupted suffix pattern 10C61000 : Heap handle 19BE0CF8 : Heap block 00000010 : Block size 00000000 : ===========================================================</pre> <p>When I turn on full page heap verification (<code>gflags /p /enable myprogram.exe /full</code>) in anticipation that this will cause an error to occur at the time the corruption is introduced, I get nothing more.</p> <p>I started to get my hopes up while reading <a href="http://www.informit.com/articles/article.aspx?p=1081496" rel="nofollow">Advanced Windows Debugging: Memory Corruption Part II—Heaps</a>, which is a chapter from <a href="http://rads.stackoverflow.com/amzn/click/0321374460" rel="nofollow">Advanced Windows Debugging</a>. I installed WinDbg, and downloaded debug symbols for <code>user32.dll</code>, <code>kernel32.dll</code>, <code>ntdll.dll</code> according to <a href="http://support.microsoft.com/kb/311503" rel="nofollow">http://support.microsoft.com/kb/311503</a>. Now when the program halts in the debugger I can issue this command to see information about the heap page:</p> <pre>0:000> dt _DPH_BLOCK_INFORMATION 19BE0CF8-0x20 ntdll!_DPH_BLOCK_INFORMATION +0x000 StartStamp : 0xabcdaaaa +0x004 Heap : 0x90c61000 +0x008 RequestedSize : 0x10 +0x00c ActualSize : 0x38 +0x010 FreeQueue : _LIST_ENTRY [ 0x0 - 0x0 ] +0x010 TraceIndex : 0 +0x018 StackTrace : (null) +0x01c EndStamp : 0xdcbaaaaa</pre> <p>I am dismayed by the <code>(null)</code> stack trace. Now, <a href="http://msdn.microsoft.com/en-us/library/ms220938%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms220938%28VS.80%29.aspx</a> says:</p> <blockquote> <p>The StackTrace field will not always contain a non-null value for various reasons. First of all stack trace detection is supported only on x86 platforms and second, even on x86 machines the stack trace detection algorithms are not completely reliable. If the block is an allocated block the stack trace is for the allocation moment. If the block was freed, the stack trace is for the free moment.</p> </blockquote> <p>But I wonder if anyone has any thoughts on increasing the chances of seeing the stack trace from the allocation moment.</p> <p>Thanks for reading!</p> http://stackoverflow.com/questions/1442078/how-to-avoid-null-stacktrace-in-dphblockinformation/1443503#1443503 0 Answer by Owen for How to avoid "(null)" StackTrace in DPH_BLOCK_INFORMATION ? Owen 2009-09-18T09:39:11Z 2009-09-18T11:26:42Z <p>Ah ha! Turns out I needed to enable more <code>gflags</code> options:</p> <pre>gflags /i myprogram.exe +ust</pre> <p>Which has this effect:</p> <pre>ust - Create user mode stack trace database</pre> <p>Seems straightforward when I see parameter description. Silly me. But I also seem to need to set the size of the trace database before it will take effect:</p> <pre>gflags /i myprogram.exe /tracedb 512</pre> <p>...or whatever (in MB).</p> http://stackoverflow.com/questions/1408513/lnk1104-cannot-open-file-x-how-to-find-out-who-wants-x-linked-in 0 "LNK1104: cannot open file 'X'": How to find out who wants X linked in? Owen 2009-09-11T01:00:28Z 2009-09-11T01:13:23Z <p>Okay, I'm stumped. I'm fiddling with some project settings, trying to start linking against library <em>Y</em> instead of library <em>X</em>. When I search through the project file (<code>.vcproj</code>) and all the inherited property sheets (<code>.vsprops</code>), there are no references left to library <em>X</em>. I've closed and reopened Visual Studio to make sure it's not holding onto some old version of the project. However, as suggested by the title, I still get the link error</p> <pre><code>LINK : fatal error LNK1104: cannot open file 'X' </code></pre> <p>When I come across this sort of problem with header files (not knowing what file is including that header), I usually rename the problem header to cause a <code>C1083: Cannot open include file</code> error, which tells me what source file is requesting it. But here the <code>LNK1104</code> is not nearly as useful. Does anyone have any ideas on how I can track this down? Thanks.</p> http://stackoverflow.com/questions/52550/what-does-the-operator-do-in-c/52590#52590 1 Answer by Owen for What does the ',' operator do in C? Owen 2008-09-09T18:50:41Z 2009-09-04T01:27:03Z <p>The only place I've seen it being useful is when you write a funky loop where you want to do multiple things in one of the expressions (probably the init expression or loop expression. Something like:</p> <pre><code>bool arraysAreMirrored(int a1[], int a2[], size_t size) { size_t i1, i2; for(i1 = 0, i2 = size - 1; i1 &lt; size; i1++, i2--) { if(a1[i1] != a2[i2]) { return false; } } return true; } </code></pre> <p>Pardon me if there are any syntax errors or if I mixed in anything that's not strict C. I'm not arguing that the , operator is good form, but that's what you could use it for. In the case above I'd probably use a <code>while</code> loop instead so the multiple expressions on init and loop would be more obvious. (And I'd initialize i1 and i2 inline instead of declaring and then initializing.... blah blah blah.)</p> http://stackoverflow.com/questions/370262/is-there-any-online-xslt-processing-service-available 3 Is there any online XSLT processing service available? Owen 2008-12-16T01:33:13Z 2009-08-31T19:58:32Z <p>(This might not seem strictly programming related, but I figure it's about deployment of an XSLT solution, and XSLT is a programming language, right?)</p> <p>I have this cunning plan for customizing a podcast that I subscribe to so the titles and other parts of the feed fit more to my liking. I figure I can devise some XSLT that expects the original podcast XML as input and puts out the XML I want. Now I guess I could run some local web server and have iTunes/whatever subscribe to <code>http://localhost/my_processor?orig=origpodcasturl&amp;xsl=myxslthingy</code>.</p> <p>My hope is that somewhere out there exists a server that does this already, i.e. a web service accessible by a simple URL that specifies a source XML document and some XSLT to apply to it. Does anyone know if this is the case?</p> http://stackoverflow.com/questions/1009520/any-way-to-bulk-load-a-qt-data-model-to-avoid-excess-signal-invocations 1 Any way to "bulk load" a Qt data model to avoid excess signal invocations? Owen 2009-06-17T21:06:11Z 2009-06-18T13:35:43Z <p>I have a <code>QStandardItemModel</code> with some manually implemented "select all" functionality. This loops through and updates the data for all items (or certain items—there's a filter involved). The problem is that I have some slots connected to the model's <code>dataChanged</code> signal, and I don't want them called every step of the way when the user does a "select all" and the model contains thousands of entries.</p> <p>Is there any way to set multiple items all at once in the model, and have <code>dataChanged</code> emitted only once for the whole change?</p> <p>Thanks for any ideas!</p> http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project 2 How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T00:42:16Z 2009-04-09T00:35:09Z <p>I have a batch file that's being run in a Visual Studio custom build step to copy files into an install directory. I want it to error out properly when the copy fails. The problems with the options I have are:</p> <ul> <li><p><code>exit 1</code><br>This works within the build sequence fine, but sometimes I want to use the batch file from the command line or from within another batch, and in these cases the <code>exit</code> causes the caller to exit as well.</p></li> <li><p><code>exit /b 1</code><br>This works nicely from the command line or from another batch file, but Visual Studio doesn't recognize that the return code wasn't 0 (i.e. it reports the project having "0 error(s)").</p></li> </ul> <p>I came across a link that provides me with a solution: <a href="http://www.nabble.com/Re:-bjam-and-Windows-p17457249.html" rel="nofollow">http://www.nabble.com/Re:-bjam-and-Windows-p17457249.html</a></p> <p>Essentially it says I have to echo an error message before doing the <code>exit /b</code>. For instance,</p> <pre><code>echo MyProj : error : could not copy files. </code></pre> <p>Does anyone know exactly what message format triggers Visual Studio to recognize an error?</p> <p>I've tried tweaking this and some work and some don't. Seems it has to match something like</p> <pre><code>.*\: .*error.*\: </code></pre> <p>Is this documented anywhere?</p> <p>Thanks.</p> <p>This is with Visual Studio 2008 SP1 on Windows XP Pro SP3 (in case <code>cmd.exe</code> has differing behaviour between Windows versions).</p> http://stackoverflow.com/questions/31163/forcing-the-solution-explorer-to-select-the-file-in-the-editor-in-visual-studio-2/46193#46193 8 Answer by Owen for Forcing the Solution Explorer to select the file in the editor in visual studio 2005 Owen 2008-09-05T16:17:43Z 2009-04-08T00:50:20Z <p>I like to keep this option turned off (especially when working with a big project), but it's useful to be able to find the file in the tree now and then. I found a way to do this here:</p> <p><a href="http://weblogs.asp.net/kdente/archive/2008/04/30/locating-the-active-item-in-solution-explorer.aspx" rel="nofollow">http://weblogs.asp.net/kdente/archive/2008/04/30/locating-the-active-item-in-solution-explorer.aspx</a></p> <p>I hope I'm not being too verbose here, but here's the guide to making this work that I wrote for my work's wiki:</p> <ol> <li>Go to Tools->Macros->Macro Explorer.</li> <li>In the Macro Explorer tree that comes up, right-click MyMacros, and then New Module....</li> <li>Call the new module SyncItem (if you want).</li> <li>Right-click the new module, then Edit.</li> <li>Paste this into the code window. (I don't know or care if the Imports lines are necessary; they're just there by default.) </li> </ol> <p>code:</p> <pre><code>Imports System Imports EnvDTE Imports EnvDTE80 Imports EnvDTE90 Imports System.Diagnostics Public Module SyncItem Sub SyncSolutionExplorer() DTE.ExecuteCommand("View.TrackActivityinSolutionExplorer") DTE.ExecuteCommand("View.TrackActivityinSolutionExplorer") End Sub End Module </code></pre> <p>The macro is most useful if you bind it to a keystroke. Here's how to do that:</p> <ol> <li>Go to Tools->Options, then select Environment->Keyboard.</li> <li>Find the new macro in the list (start typing "syncitem" or similar in the search box).</li> <li>I chose Alt-Shift-T (which this dialog box likes to call Shift-Alt-T) for, um, "Tree," I guess? If you're a fan of Edit.LineTranspose, whatever that is (I think it swaps the current line with the following one), then you might like to pick a different shortcut. </li> </ol> http://stackoverflow.com/questions/698767/can-font-size-be-disabled-in-qfontdialoggetfont 0 Can font size be disabled in QFontDialog::getFont()? Owen 2009-03-30T19:54:22Z 2009-03-30T19:57:48Z <p>Hi all,</p> <p>I want to allow users to pick a font but the size they choose will have no effect. So it would be best to have that part of the dialog disabled. Is this possible?</p> <p>Thank you!</p> http://stackoverflow.com/questions/570851/how-to-include-pipe-character-in-an-argument-to-a-batch-file-from-a-bash-script 1 How to include pipe character in an argument to a batch file from a bash script? Owen 2009-02-20T19:11:53Z 2009-02-20T22:19:11Z <p>I have a shell script that I want to execute this line:</p> <pre><code>qtvars.bat vsstart "qt.sln" /BUILD "Debug|Win32" </code></pre> <p><s>This works fine (though I had to modify <code>qtvars.bat</code>, but that's beside the point). The problem is that I want the command to execute to be in a variable:</s> EDIT: This doesn't work either, if I type it into bash. Previously I was typing it into <code>cmd.exe</code>, which hardly made for a fair comparison.</p> <pre><code>command="qtvars.bat" args="vsstart" $command $args "qt.sln" /BUILD "Debug|Win32" </code></pre> <p>Now it chokes on the pipe! I get this message:</p> <pre><code>'Win32' is not recognized as an internal or external command, operable program or batch file. </code></pre> <p>I've tried a bunch of forms of escaping the quotes and/or pipe, all to no avail. Interestingly, it works when it's an executable rather than a batch file, e.g.:</p> <pre><code>command="devenv.exe" args="" $command $args "qt.sln" /BUILD "Debug|Win32" </code></pre> <p>Thanks for any ideas.</p> http://stackoverflow.com/questions/570851/how-to-include-pipe-character-in-an-argument-to-a-batch-file-from-a-bash-script/571454#571454 0 Answer by Owen for How to include pipe character in an argument to a batch file from a bash script? Owen 2009-02-20T22:19:11Z 2009-02-20T22:19:11Z <p>I'm really thinking this is a bug in Cygwin's <code>bash</code>.</p> <p>It still fails when I rewrite the line like this:</p> <pre><code>eval "$command $args \"qt.sln\" /BUILD \"Debug|Win32\"" </code></pre> <p>So taking Vlad R's mention of CMD.EXE as a hint, I tried this instead:</p> <pre><code>cmd.exe /c "$command $args \"qt.sln\" /BUILD \"Debug|Win32\"" </code></pre> <p>And it works. Oddly enough, without the <code>.exe</code>, it <em>doesn't</em> work. Oh, and now it gives me grief if <code>$command</code> has spaces in it. Yes, I've tried putting <code>\"</code> on either side of it and/or running it through <code>cygpath -w</code> first. That's for another day because I've wasted enough time on this triviality already! (I can get around it all by just specifying <code>Debug</code> instead of <code>Debug|Win32</code>.)</p> http://stackoverflow.com/questions/493603/what-is-the-cleanest-way-to-write-this-if-then-logic/493694#493694 1 Answer by Owen for What is the cleanest way to write this if..then logic? Owen 2009-01-29T22:11:53Z 2009-01-29T22:16:56Z <p>If it's the entirety of the method then I'd say the second (using the else) is a bit more elegant. If you have preceding code or (especially) much more code before the return in the else case, I'd say it's better not to put the else. Keeps from code becoming too indented.</p> <p>i.e. either:</p> <pre><code>void myfunc() { if (!String.IsNullOrEmpty(returnUrl)) { return Redirect(returnUrl); } else { return RedirectToAction("Open", "ServiceCall"); } } </code></pre> <p>or</p> <pre><code>void myfunc() { // ... maybe some code here ... if(!String.IsNullOrEmpty(returnUrl)) { return Redirect(returnUrl); } // ... a bunch of other code ... return RedirectToAction("Open", "ServiceCall"); } </code></pre> http://stackoverflow.com/questions/493534/does-the-vs-disassembly-window-show-the-whole-exe 2 Does the VS disassembly window show the whole EXE? Owen 2009-01-29T21:31:36Z 2009-01-29T21:54:01Z <p>A client is running my company's program and it is halting before it gets anywhere. They sent this information from the Windows Event Log:</p> <pre><code>faulting module program.exe, version 1.2.3.4, fault address 0x00054321. </code></pre> <p>We don't have much else to go on so as a last ditch effort I've been trying to see if I can find where that position is in a disassembler. I run the program through Visual Studio, pause it, look at the Disassembly window and try scrolling to that address but all I get there is this:</p> <pre><code>00054321 ??? 00054322 ??? 00054323 ??? 00054324 ??? 00054325 ??? 00054326 ??? 00054327 ??? 00054328 ??? 00054329 ??? 0005432A ??? </code></pre> <p>Would this be because Visual Studio only disassembles part of the EXE near the pause position or something? It's hard for me to look through how much is actually disassembled because the scrollbar doesn't work fully. (I can't grab and move the scroll position; I have to scroll by line or by page.)</p> <p>Thanks for any insight you may have!</p> http://stackoverflow.com/questions/202459/what-is-gcnew 0 What is gcnew? Owen 2008-10-14T19:17:38Z 2009-01-19T21:49:09Z <p>I stumbled across this code and am too proud to go and ask the author what it means.</p> <pre><code>Hashtable^ tempHash = gcnew Hashtable(iterators_); IDictionaryEnumerator^ enumerator = tempHash-&gt;GetEnumerator(); </code></pre> <p>What is <code>gcnew</code> and how important is it to use that instead of simply <code>new</code>? (I'm also stumped by the caret; I asked about that <a href="http://stackoverflow.com/questions/202463/what-does-the-caret-mean-in-cnet">over here</a>.)</p> http://stackoverflow.com/questions/437247/version-control-for-version-control 5 Version control for version control? Owen 2009-01-12T22:23:05Z 2009-01-12T23:39:29Z <p>I was overseeing branching and merging throughout the last release at my company, and a number of times had to modify our Subversion pre-commit hooks to enforce different requirements on check-in comments and such. I was a bit nervous every time I was editing those files, because (a) they're part of a live production system, albeit only used internally (and we're not a huge organization), and (b) they're not under version control themselves.</p> <p>I'm curious what sort of fail-safes people have in place on their version control infrastructure. Daily backups? "Meta" version control? I suppose the former is in place here as part of the backup of the whole repository. And the latter would be useful as the complexity of check-in requirements grows...</p> http://stackoverflow.com/questions/155378/how-to-alter-a-float-by-its-smallest-increment-or-close-to-it 17 How to alter a float by its smallest increment (or close to it)? Owen 2008-09-30T22:29:20Z 2008-12-11T03:55:51Z <p>I have a <code>double</code> value <code>f</code> and would like a way to nudge it very slightly larger (or smaller) to get a new value that will be as close as possible to the original but still strictly greater than (or less than) the original.</p> <p>It doesn't have to be close down to the last bit—it's more important that whatever change I make is guaranteed to produce a different value and not round back to the original.</p> http://stackoverflow.com/questions/300634/any-way-to-run-a-macro-in-an-open-vs-instance-from-the-command-line 0 Any way to run a macro (in an open VS instance) from the command line? Owen 2008-11-19T00:10:45Z 2008-11-19T02:23:35Z <p>I typically run a script each night that updates my code from SVN, then builds it. The last few days I have a long debug run I'd like to start at night so it can go through the hour or two it takes to hit the error before I come in the next morning. The way I've done this so far is to VPN in later in the evening to start the run.</p> <p>Is there any way I can have a script tell an active Visual Studio instance to execute a macro? Either that or launch a new instance that would run a macro once it's open. This way I could automate the whole thing.</p> http://stackoverflow.com/questions/48470/how-to-disable-visual-studio-macro-tip-balloon 0 How to disable Visual Studio macro "tip" balloon? Owen 2008-09-07T14:29:07Z 2008-11-17T18:58:43Z <p>Whenever I use a macro in Visual Studio I get an annoying tip balloon in the system tray and an accompanying "pop" sound. It says:</p> <blockquote> <p>Visual Studio .NET macros</p> <p>To stop the macro from running, double-click the spinning cassette.<br /> Click here to not show this balloon again.</p> </blockquote> <p>I have trouble clicking the balloon because my macro runs so quickly.</p> <p>Is this controllable by some dialog box option?</p> <p>(I found someone else asking this question on <a href="http://www.tech-archive.net/Archive/VisualStudio/microsoft.public.vsnet.ide/2005-11/msg00267.html" rel="nofollow">some other site</a> but it's not answered there. I give credit here because I've copied and pasted some pieces from there.)</p> http://stackoverflow.com/questions/288282/how-does-vc-mangle-local-static-variable-names 1 How does VC++ mangle local static variable names? Owen 2008-11-13T21:02:17Z 2008-11-15T19:50:57Z <p>Here's some code I have:</p> <pre><code>MyClass* MyClass::getInstance() { static MyClass instance; return &amp;instance; } </code></pre> <p>I want to look into this singleton's current values. But I'm currently paused three hours into execution, and the reason I'm paused is that I'm out of memory. So I can't put a breakpoint in this method there to see what the value is.</p> <p>My question then is how to refer to this <code>instance</code> variable from a global scope. I've tried referring to it as <code>MyClass::getInstance::instance</code> but that doesn't work. I'm guessing <code>getInstance</code> has to be decorated somehow. Anyone know how?</p> <p>This is in Visual Studio 2008.</p> http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223667#223667 0 Answer by Owen for using the 'is' keyword in a switch in c# Owen 2008-10-21T21:59:29Z 2008-10-21T21:59:29Z <p>You could add a method <code>getType()</code> to <code>BaseType</code> that is implemented by each concrete subclass to return a unique integral ID (possibly an enum) and switch on that, yes?</p> http://stackoverflow.com/questions/202506/when-you-accept-an-answer-should-you-also-vote-it-up 12 When you accept an answer should you also vote it up? [closed] Owen 2008-10-14T19:32:04Z 2008-10-14T20:01:04Z <p>By accepting an answer you're obviously already saying that it was useful. Should an additional up-vote be reserved for answers that are particularly useful, or do people always tend to use the two in unison (or the contrary)?</p> http://stackoverflow.com/questions/202463/what-does-the-caret-mean-in-c-cli 5 What does the caret mean in C++/CLI? Owen 2008-10-14T19:18:38Z 2008-10-14T19:29:04Z <p>I just came across this code and a few Google searches turn up no explanation of this mysterious (to me) syntax.</p> <pre><code>Hashtable^ tempHash = gcnew Hashtable(iterators_); IDictionaryEnumerator^ enumerator = tempHash-&gt;GetEnumerator(); </code></pre> <p>What the heck does the caret mean? (The <code>gcnew</code> is also new to me, and I asked about that <a href="http://stackoverflow.com/questions/202459/what-is-gcnew">here</a>.)</p> http://stackoverflow.com/questions/192454/how-can-kdiff3-be-used-properly-with-tortoisesvn-to-resolve-conflicts 3 How can KDiff3 be used properly with TortoiseSVN to resolve conflicts? Owen 2008-10-10T17:56:32Z 2008-10-14T10:28:08Z <p>I have TortoiseSVN set up to use KDiff3 as the conflict resolution tool (I find it shows more information useful to the merge than the built-in TortoiseMerge does).</p> <p>When I open a file with Tortoise's "Edit Conflicts" command it shows me the three files and I have to select "Merge->Merge Current File" manually. The problem is that KDiff3 saves the result to <code>source_file.working</code> instead of to <code>source_file</code>. So without doing a Save As, the real file with the conflict doesn't get modified. Is there a way around doing this manual Save As every time?</p> <p>I know this isn't strictly a programming question but it's about an ancillary process common enough to programmers that it should be useful here. I couldn't find the answer to this elsewhere.</p> http://stackoverflow.com/questions/192454/how-can-kdiff3-be-used-properly-with-tortoisesvn-to-resolve-conflicts/192558#192558 1 Answer by Owen for How can KDiff3 be used properly with TortoiseSVN to resolve conflicts? Owen 2008-10-10T18:29:03Z 2008-10-10T18:29:03Z <p>Turns out I just needed a more specific command line. I had it set simply to the path to <code>kdiff3.exe</code>, and hoped the default arguments passed from TortoiseSVN would be enough. Not so. Here's the one needed (the key being the <code>-o</code> argument):</p> <pre><code>C:\Program Files\KDiff3\kdiff3.exe %base %theirs %mine -o %merged </code></pre> http://stackoverflow.com/questions/176910/is-it-worthwhile-to-use-a-bit-vector-array-rather-than-a-simple-array-of-bools 1 Is it worthwhile to use a bit vector/array rather than a simple array of bools? Owen 2008-10-07T01:35:23Z 2008-10-07T03:09:01Z <p>When I want an array of flags it has typically pained me to use an entire byte (or word) to store each one, as would be the result if I made an array of <code>bool</code>s or some other numeric type that could be set to 0 or 1. But now I wonder whether using a structure that is more space-efficient is worth it given the (albeit hopefully very slight) additional overhead of shifting and bit testing.</p> <p>In my company we use Rogue Wave tools (though hopefully not for much longer) and it's their <code>RWBitVec</code> that I've used for this purpose up until now.</p> http://stackoverflow.com/questions/169080/is-there-a-way-to-change-something-in-tool-options-via-a-macro 1 Is there a way to change something in Tool->Options via a macro? Owen 2008-10-03T22:06:57Z 2008-10-03T22:19:07Z <p>I'd like to be able to toggle easily between two values for "maximum number of parallel project builds" in Visual Studio 2008 (in Tools->Options->Projects and Solutions->Build and Run). (When I'm planning on doing concurrent work I'd like to reduce it from 4 to 3.) I'm not too well versed in writing macros for the IDE. When I try recording a macro, and perform all the actions (open the dialog, change the setting, click OK), the only thing that gets recorded is this:</p> <pre><code>DTE.ExecuteCommand ("Tools.Options") </code></pre> <p>Is my goal unattainable?</p> http://stackoverflow.com/questions/129043/can-i-specify-redirects-and-pipes-in-variables 2 Can I specify redirects and pipes in variables? Owen 2008-09-24T18:47:47Z 2008-09-25T09:09:47Z <p>I have a bash script that creates a Subversion patch file for the current directory. I want to modify it to zip the produced file, if <code>-z</code> is given as an argument to the script.</p> <p>Here's the relevant part:</p> <pre><code>zipped='' zipcommand='&gt;' if [ "$1" = "-z" ] then zipped='zipped ' filename="${filename}.zip" zipcommand='| zip &gt;' fi echo "Creating ${zipped}patch file $filename..." svn diff $zipcommand $filename </code></pre> <p>This doesn't work because it passes the <code>|</code> or <code>></code> contained in <code>$zipcommand</code> as an argument to <code>svn</code>.</p> <p>I can easily work around this, but the question is whether it's ever possible to use these kinds of operators when they're contained in variables.</p> <p>Thanks!</p> http://stackoverflow.com/questions/123632/any-way-to-do-visual-studio-project-only-build-from-command-line 2 Any way to do Visual Studio "project only" build from command line? Owen 2008-09-23T20:24:34Z 2008-09-23T21:28:01Z <pre><code>devenv mysolution.sln /build "Release|Win32" /project myproject </code></pre> <p>When building from the command line, it seems I have the option of doing a <code>/build</code> or <code>/rebuild</code>, but no way of saying I want to do "project only" (i.e. not build or rebuild the specified project's dependencies as well). Does anyone know of a way?</p> http://stackoverflow.com/questions/1800544/are-there-well-defined-size-limits-in-formatmessage/1800577#1800577 Comment by Owen on Are there well-defined size limits in FormatMessage? Owen 2009-11-26T18:50:51Z 2009-11-26T18:50:51Z @Gonzalo: Yes, I just tried manually allocating the buffer (LPTSTR buff = new char[70000]; FormatMessage(FORMAT_MESSAGE_FROM_STRING, str, 0, 0, buff, 70000, &amp;argList);) and got the same result. @MSalters: Sure, in Unicode. But my program isn't explicitly using that, so it's annoying that Windows chooses to marshal to and from Unicode as you explain in your answer (and lose data, or rather give up, in the process). I guess the annoyance is mostly that it's not documented. http://stackoverflow.com/questions/1800544/are-there-well-defined-size-limits-in-formatmessage/1803799#1803799 Comment by Owen on Are there well-defined size limits in FormatMessage? Owen 2009-11-26T17:51:31Z 2009-11-26T17:51:31Z Ah, I guess I'm calling FormatMessageA, since I don't have the UNICODE macro defined. So that sounds like an explanation. Thanks! http://stackoverflow.com/questions/1800544/are-there-well-defined-size-limits-in-formatmessage/1800577#1800577 Comment by Owen on Are there well-defined size limits in FormatMessage? Owen 2009-11-26T00:21:21Z 2009-11-26T00:21:21Z Hmm, I'm not sure what to call to set the langid explicitly (i.e. what function to pass the result of that MAKELANGID macro to). But I'm pretty confident I've got a single-byte character set. My locale is en_CA, codepage 1252 (ANSI - Latin I). When I look in the watch window for the null terminator in the buff returned from FormatMessage(), it is indeed 32032 bytes from the start of the string. http://stackoverflow.com/questions/1800544/are-there-well-defined-size-limits-in-formatmessage/1800577#1800577 Comment by Owen on Are there well-defined size limits in FormatMessage? Owen 2009-11-25T23:34:33Z 2009-11-25T23:34:33Z Not so. When I trim down the argument to be 32,000 bytes, FormatMessage() returns 32032, and sizeof(TCHAR) for me is 1. http://stackoverflow.com/questions/1408513/lnk1104-cannot-open-file-x-how-to-find-out-who-wants-x-linked-in/1408540#1408540 Comment by Owen on "LNK1104: cannot open file 'X'": How to find out who wants X linked in? Owen 2009-09-11T22:26:46Z 2009-09-11T22:26:46Z Thanks! That was indeed helpful. http://stackoverflow.com/questions/52550/what-does-the-operator-do-in-c/52590#52590 Comment by Owen on What does the ',' operator do in C? Owen 2009-09-04T01:27:14Z 2009-09-04T01:27:14Z Indeed! Duly corrected. http://stackoverflow.com/questions/106563/does-the-tee-command-always-wait-for-eof/108370#108370 Comment by Owen on Does the tee command always wait for EOF? Owen 2009-06-25T01:46:32Z 2009-06-25T01:46:32Z @jon: Yeah, it seems my problem was actually with devenv.exe choking things up somehow when it's building a big solution. I tried using my own tee replacement and it had the same trouble. http://stackoverflow.com/questions/1009520/any-way-to-bulk-load-a-qt-data-model-to-avoid-excess-signal-invocations/1012139#1012139 Comment by Owen on Any way to "bulk load" a Qt data model to avoid excess signal invocations? Owen 2009-06-23T02:16:55Z 2009-06-23T02:16:55Z Yeah, of course. That way just seems quite manual; it's a pity support for this sort of operation isn't built into the framework. I don't imagine it's particularly uncommon. I'm sure I'll end up accepting this answer because it definitely was helpful and there probably isn't any better answer out there. I just feel like leaving the question open for a bit in case someone happens by with a brainwave. http://stackoverflow.com/questions/1009520/any-way-to-bulk-load-a-qt-data-model-to-avoid-excess-signal-invocations/1012139#1012139 Comment by Owen on Any way to "bulk load" a Qt data model to avoid excess signal invocations? Owen 2009-06-18T21:16:34Z 2009-06-18T21:16:34Z Thanks! The only part this doesn't address is the need still to emit dataChanged signal once for the whole operation. In my particular case I have a proxy model on top of the real one, and it has an invalidate() method, but what approach would there be if I were dealing directly with the QStandardItemModel? http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project/728768#728768 Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T15:03:05Z 2009-04-08T15:03:05Z Interesting! That does indeed work. I really wonder what the issue with &quot;exit /b&quot; is... http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project/729231#729231 Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T14:45:57Z 2009-04-08T14:45:57Z Perfect. Thank you! http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project/729210#729210 Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T14:45:13Z 2009-04-08T14:45:13Z Doesn't work if I omit the &quot;exit&quot; either—i.e. if I make &quot;set errorlevel=1&quot; the last line of the .bat. http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project/729210#729210 Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T14:39:44Z 2009-04-08T14:39:44Z Same deal with this as with &quot;exit /b 1&quot;: It doesn't work. But it works if I do &quot;set errorlevel=1&quot; then &quot;exit&quot;. http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project/728191#728191 Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T01:45:25Z 2009-04-08T01:45:25Z Interesting. This is currently a custom build step on the file. I tried it as a build event and got the same result. I even tried changing the script to be exactly what you have. But yes, I'm quite sure it doesn't work the same on my machine. Simply modifying the &quot;echo&quot; line changes the result. http://stackoverflow.com/questions/728113/how-to-return-an-error-from-bat-in-visual-studio-2008-sp1-project Comment by Owen on How to return an error from .bat in Visual Studio (2008 SP1) project? Owen 2009-04-08T01:01:24Z 2009-04-08T01:01:24Z Good point. It's VS 2008.