User Jon Schneider - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:45:22Z http://stackoverflow.com/feeds/user/12484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1267877/getting-the-path-filename-of-the-open-document-in-any-windows-application 0 Getting the path & filename of the open document in any Windows application Jon Schneider 2009-08-12T18:26:10Z 2009-11-12T17:52:25Z <h2>Goal</h2> <p>Let me start with my final vision of what I'd like to be able to do first: In Windows, I'd like to be able to use a global keyboard shortcut that I define (say, <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>C</kbd>) to copy the full path and filename of the open document in the foreground application to the clipboard. </p> <p>This would be useful to, for example, be able to subsequently paste the path &amp; filename into an "Open File" dialog in an email client to attach that document to an email, without having to manually browse to the target document in the filesystem.</p> <h2>Specific Question</h2> <p>Now, the specific part of how to do this that I'm interested in how to implement is: <strong>How can I get the path and filename of the current "open document" of any arbitrary currently-running Windows application.</strong> (If this can't be done with <em>any</em> Windows application, then the next best thing would be for this to work with as many applications as possible.) </p> <p>Obviously, this wouldn't apply to some applications that don't necessarily have the concept of a "currently open document" that corresponds to a file on the local filesystem, such as an email client, an IM client, or (usually) a web browser.</p> <h3>Application-Specific Solutions</h3> <p>I'm aware that it's possible to write application-specific solutions to do this. For example, the following MS Word VBA subroutine will copy the filename and path of the open document in Word to the clipboard:</p> <pre><code>Dim myDataObject As DataObject Set myDataObject = New DataObject myDataObject.SetText ActiveDocument.FullName myDataObject.PutInClipboard </code></pre> <p>However, what I really want is something that will work for any of the applications on my system (or, again, for as many of them as reasonably possible) without having to try and write an application-specific solution for each one.</p> <h3>Idea: Recent Documents Folder</h3> <p>One idea: Could the Recent Documents folder (and/or its underlying Windows APIs) somehow be leveraged to help with this? It seems to have information about the same concept of "open documents" that I'm interested in here, that apparently applies across various application types. (Looking at the contents of the Recent Documents folder on my machine, I see entries in there that were apparently made for documents that I opened with various applications including MS Word, MS Excel, Eclipse, Adobe Acrobat Reader, Paint.NET, TOAD, and Notepad2.)</p> <h3>Preferred Solution Language</h3> <p>I'd <em>prefer</em> solutions in C# or C++ code, but I'm open to any suggestions for how to go about doing this, regardless of implementation language!</p> <h3>Windows 7?</h3> <p><strong>Update 11/2009:</strong> Now that Windows 7 is widely available, I figured it might be coming back to this question and asking: Does Windows 7 provide any new APIs, or any other mechanism, that would help with what I'm trying to accomplish here?</p> http://stackoverflow.com/questions/103654/why-dont-languages-raise-errors-on-integer-overflow-by-default 11 Why don't languages raise errors on integer overflow by default? Jon Schneider 2008-09-19T16:53:10Z 2009-09-21T12:11:24Z <p>In several modern programming languages (including C++, Java, and C#), the language allows <a href="http://en.wikipedia.org/wiki/Integer_overflow" rel="nofollow">integer overflow</a> to occur at runtime without raising any kind of error condition.</p> <p>For example, consider this (contrived) C# method, which does not account for the possibility of overflow/underflow. (For brevity, the method also doesn't handle the case where the specified list is a null reference.)</p> <pre><code>//Returns the sum of the values in the specified list. private static int sumList(List&lt;int&gt; list) { int sum = 0; foreach (int listItem in list) { sum += listItem; } return sum; } </code></pre> <p>If this method is called as follows:</p> <pre><code>List&lt;int&gt; list = new List&lt;int&gt;(); list.Add(2000000000); list.Add(2000000000); int sum = sumList(list); </code></pre> <p>An overflow will occur in the sumList() method (because the "int" type in C# is a 32-bit signed integer, and the sum of the values in the list exceeds the value of the maximum 32-bit signed integer). The sum variable will have a value of -294967296 (not a value of 4000000000); this most likely is not what the (hypothetical) developer of the sumList method intended.</p> <p>Obviously, there are various techniques that can be used by developers to avoid the possibility of integer overflow, such as using a type like Java's <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a>, or the <a href="http://msdn.microsoft.com/en-us/library/74b4xzyw.aspx" rel="nofollow">checked</a> keyword and <a href="http://msdn.microsoft.com/en-us/library/h25wtyxf.aspx" rel="nofollow">/checked</a> compiler switch in C#.</p> <p>However, the question that I'm interested in is why these languages were designed to by default allow integer overflows to happen in the first place, instead of, for example, raising an exception when an operation is performed at runtime that would result in an overflow. It seems like such behavior would help avoid bugs in cases where a developer neglects to account for the possibility of overflow when writing code that performs an arithmetic operation that could result in overflow. (These languages could have included something like an "unchecked" keyword that could designate a block where integer overflow is permitted to occur without an exception being raised, in those cases where that behavior is explicitly intended by the developer; C# actually <a href="http://msdn.microsoft.com/en-us/library/a569z7k8.aspx" rel="nofollow">does have this</a>.)</p> <p>Does the answer simply boil down to performance -- the language designers didn't want their respective languages to default to having "slow" arithmetic integer operations where the runtime would need to do extra work to check whether an overflow occurred, on every applicable arithmetic operation -- and this performance consideration outweighed the value of avoiding "silent" failures in the case that an inadvertent overflow occurs?</p> <p>Are there other reasons for this language design decision as well, other than performance considerations?</p> http://stackoverflow.com/questions/1296059/eclipse-weblogic-plugin-problem-cant-start-weblogic-server/1296627#1296627 0 Answer by Jon Schneider for Eclipse WebLogic Plugin problem - can't start WebLogic server Jon Schneider 2009-08-18T21:29:51Z 2009-08-18T21:29:51Z <p>That error message sounds like the one that comes from Windows when you try to run a file, and Windows can't find it. For example, see <a href="http://robertmarkbramprogrammer.blogspot.com/2008/01/xxx-is-not-recognized-as-internal-or.html" rel="nofollow">this blog post</a>; or just enter a nonsense command on the cmd.exe command line, and you'll get a similar error message.</p> <p>Maybe your Eclipse is somehow running with a different PATH than your cmd.exe command window?</p> http://stackoverflow.com/questions/1045107/what-different-terms-mean-the-same-thing-or-dont-but-people-think-they-do/1214781#1214781 0 Answer by Jon Schneider for What different terms mean the same thing (or don't, but people think they do)? Jon Schneider 2009-07-31T20:41:39Z 2009-07-31T20:41:39Z <p>"Find as you type" == "incremental search": The feature in Firefox and some other programs where, as you are entering your search term in a Find dialog/field, the document jumps to the position of the position of the next search result based on what you have entered so far (without you actually having to click a "Search" button to initiate the search action). </p> <p>This is primarily handy to avoid typing (for example) "incremental search[enter]" when typing "incr" is probably good enough to find what you're looking for!</p> <p>This came to mind as a meaning of "find as you type" different than the example given in the original question!</p> http://stackoverflow.com/questions/94977/why-arent-variables-declared-in-try-in-scope-in-catch-or-finally 20 Why aren't variables declared in "try" in scope in "catch" or "finally"? Jon Schneider 2008-09-18T17:56:23Z 2009-07-05T17:49:06Z <p>In C# and in Java (and possibly other languages as well), variables declared in a "try" block are not in scope in the corresponding "catch" or "finally" blocks. For example, the following code does not compile:</p> <pre><code>try { String s = "test"; // (more code...) } catch { Console.Out.WriteLine(s); //Java fans: think "System.out.println" here instead } </code></pre> <p>In this code, a compile-time error occurs on the reference to s in the catch block, because s is only in scope in the try block. (In Java, the compile error is "s cannot be resolved"; in C#, it's "The name 's' does not exist in the current context".)</p> <p>The general solution to this issue seems to be to instead declare variables just before the try block, instead of within the try block:</p> <pre><code>String s; try { s = "test"; // (more code...) } catch { Console.Out.WriteLine(s); //Java fans: think "System.out.println" here instead } </code></pre> <p>However, at least to me, (1) this feels like a clunky solution, and (2) it results in the variables having a larger scope than the programmer intended (the entire remainder of the method, instead of only in the context of the try-catch-finally).</p> <p>My question is, what were/are the rationale(s) behind this language design decision (in Java, in C#, and/or in any other applicable languages)? </p> http://stackoverflow.com/questions/900863/alternative-to-drop-down-list/965906#965906 0 Answer by Jon Schneider for Alternative to drop down list? Jon Schneider 2009-06-08T17:01:13Z 2009-06-08T17:01:13Z <p>If you do go with a drop-down list with a large number of items, I would suggest avoiding the practice of imposing an arbitrarily small "maximum number of items shown at a time" on the expanded list (and including a vertical scrollbar on the expanded drop-down for access to the remaining items), unless you have a good reason for doing so.</p> <p>I've been annoyed more than once at some application that showed me a drop-down list with a moderately large number of items (say, 20 or 30), but limited the number of items shown to a small number (say, 8). I have plenty of screen real estate available in the application window as a whole, and even more space available on my entire screen; so why force me to scroll the list to see all of the available choices, when the list could simply be drawn large enough to show all of the items at the same time?</p> http://stackoverflow.com/questions/159024/home-office-programming-setup-post-pictures-if-possible/956922#956922 2 Answer by Jon Schneider for Home Office Programming Setup (Post pictures if possible) Jon Schneider 2009-06-05T16:43:46Z 2009-06-05T16:43:46Z <p><a href="http://en.wikipedia.org/wiki/Scott%5FHanselman" rel="nofollow">Scott Hanselman</a> has published a <a href="http://www.hanselman.com/blog/NewJobNewHouseNewBabyAndDesigningATotallyNewHomeOffice.aspx" rel="nofollow">comprehensive post about designing his home office</a> (2007). Topics covered in his post:</p> <ul> <li>Colors</li> <li>Art</li> <li>Office / Home Separation</li> <li>Connectivity</li> <li>Desk</li> <li>Cable Management</li> <li>Monitors</li> <li>Shelving</li> <li>Ergonomics</li> <li>Brainstorming in Comfort</li> <li>Supplies</li> <li>Special Needs</li> <li>Little Details</li> <li>Backup/Getaway Strategy</li> <li>Cost and Cost/Benefit Strategy</li> </ul> http://stackoverflow.com/questions/920063/which-keycodes-kan-i-safely-use-to-make-my-website-accessible/926780#926780 0 Answer by Jon Schneider for Which keyCodes kan I safely use to make my website accessible? Jon Schneider 2009-05-29T16:00:52Z 2009-05-29T16:00:52Z <p>This may be a tricky problem to solve over the long term, since browsers will sometimes introduce new keyboard shortcuts in newer versions, which may conflict with shortcuts that you may have assigned for use in your application. A couple of such examples that I'm aware of:</p> <ul> <li><p>An old version of the <a href="http://toolbar.google.com/" rel="nofollow">Google Toolbar</a> that ran in Firefox 1 used the keystroke Alt+s to set the focus to the Search field on the toolbar. However, when Firefox 2 was introduced, the History menu was added with an accessor key of Alt+s, which broke the Google Toolbar Alt+s keyboard shortcut. (<a href="http://blog.jonschneider.com/2006/10/workaround-cant-focus-google-toolbar.html" rel="nofollow">More info</a>)</p></li> <li><p>An old version of the Firefox extension <a href="https://addons.mozilla.org/en-US/firefox/addon/28" rel="nofollow">Duplicate Tab</a> used the keyboard shortcut Ctrl+Shift+t to duplicate the current tab. However, Firefox 2 introduced a new feature, "reopen recently closed tab," and assigned that to Ctrl+Shift+t, which broke Duplicate Tab. The author of Duplicate Tab ended up changing the "duplicate tab" shortcut key to Ctrl+Shift+u. (<a href="https://www.mozdev.org/bugs/show%5Fbug.cgi?id=16032" rel="nofollow">More info</a>)</p></li> </ul> http://stackoverflow.com/questions/924019/rounding-issues-with-allocating-dollar-amounts-across-multiple-people/924198#924198 0 Answer by Jon Schneider for Rounding issues with allocating dollar amounts across multiple people Jon Schneider 2009-05-29T02:52:09Z 2009-05-29T02:52:09Z <p>+1 for Matt Spradley's solution.</p> <p>As an additional comment to Matt's solution, you of course also need to account for the case where you end up allocating penny (or more) <em>less</em> than the target amount -- in that case, you need to subtract money from one or more of the allocated amounts.</p> <p>You also need to ensure that you don't end up subtracting a penny from an allocated amount of $0.00 (in the event that you are allocating a very small amount among a large number of recipients).</p> http://stackoverflow.com/questions/142076/is-there-use-for-the-scroll-lock-button-anymore/142080#142080 3 Answer by Jon Schneider for Is there use for the Scroll Lock button anymore? Jon Schneider 2008-09-26T21:26:26Z 2009-05-13T17:55:06Z <p>Microsoft Excel uses Scroll Lock to allow you to scroll the spreadsheet around with the arrow keys without changing the active/selected cell -- in line with the Scroll Lock key's <a href="http://www.straightdope.com/columns/read/2125/whats-the-scroll-lock-key-on-my-computer-for" rel="nofollow">original intent</a>.</p> http://stackoverflow.com/questions/205722/what-are-the-key-use-cases-for-use-of-virtualization-in-software-development 5 What are the key use cases for use of virtualization in software development? Jon Schneider 2008-10-15T17:50:18Z 2009-05-01T23:38:51Z <p>What are the key use cases for the use of virtualization -- that is, running one or more "virtual PCs" using software such as <a href="http://www.vmware.com/" rel="nofollow">VMWare</a> and <a href="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx" rel="nofollow">Microsoft Virtual PC</a> -- for software development?</p> <p>Also -- are there other instances/uses of virtualization that aren't covered by my definition above (use of a tool like MS Virtual PC or VMWare), and that are useful to developers?</p> <p>My impetus for asking is this <a href="http://stackoverflow.com/questions/171946/computer-upgrade-cycle#171978">StackOverflow comment</a> by <a href="http://stackoverflow.com/users/9664/metro-smurf">Metro Smurf</a> asserting "You'll wonder how you ever developed without it!", regarding use of virtualization.</p> <p>(Please include just one use case per response. Thanks!)</p> http://stackoverflow.com/questions/76267/hardware-solutions-for-adding-a-third-monitor-to-a-laptop 6 Hardware solutions for adding a third monitor to a laptop? Jon Schneider 2008-09-16T19:56:59Z 2009-04-28T15:21:32Z <p>My primary development machine at work is a laptop. I currently run with two monitors, which the machine natively supports (an external monitor connected via the laptop's VGA or DVI port, plus the laptop's own attached screen).</p> <p>I'd like to add a third monitor to my setup. What are some good hardware solutions for adding a third monitor, given that I can't add an additional internal PCI-E/PCI card to my machine?</p> <p>(If anyone would care to offer hardware-specific solutions, my machine is a Lenovo Thinkpad T60 running Windows XP SP2.)</p> <p><strong>Update 10/3/2008</strong> - Based in part on the answers here, I went ahead and ordered an <a href="http://www.amazon.com/IOGEAR-GUC2020DW6-External-Video-Card/dp/B0016B6722?tag=jonschneiderc-20&amp;linkCode=sp1&amp;camp=2025&amp;creative=165953&amp;creativeASIN=B0016B6722" rel="nofollow">IOGEAR GUC2020DW6 USB 2.0 External DVI Video Card</a>; it's scheduled to arrive in a few days. I'll update this question again once I've received the card and have had a chance to try it out. </p> <p><strong>Update 10/13/2008</strong> - The IOGEAR GUC2020DW6 is working out great. I'm using it on my laptop (Lenovo Thinkpad T60, Windows XP SP2) to drive a DVI monitor running at 1680x1050 resolution, and it works just fine. There is a bit of noticeable "lag" while dragging windows around on the screen, but the display is very snappy for text editing and moving the mouse around, and even for scrolling text within a window.</p> <p>When I need to undock the laptop, I just unplug the USB cable, and Windows seamlessly removes that monitor from my desktop area. Afterward, I replug the cable, and the monitor is automatically re-added to my desktop area, the same way that I originally had it configured. (I have the IOGEAR's USB cable plugged directly into my laptop, rather than into the docking station; the USB ports on the docking station all failed about 13 months after I got it. Yes, the docking station did, in fact, have a 12-month warranty.)</p> http://stackoverflow.com/questions/664371/which-is-better-to-display-extra-info-on-web-page-pop-up-when-you-click-or-when/726496#726496 0 Answer by Jon Schneider for Which is better to display extra info on web page? Pop up when you click or when you hover? Jon Schneider 2009-04-07T16:08:16Z 2009-04-07T16:08:16Z <p>As a couple of additional precedents to consider, you might want to consider the functionality of the <a href="http://www.w3schools.com/tags/tag%5Facronym.asp" rel="nofollow">acronym</a> and <a href="http://www.w3schools.com/tags/tag%5Fabbr.asp" rel="nofollow">abbr</a> HTML tags. Both allow you to provide extra information on a particular piece of text in the page, and both work on the "hover" principle.</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98759#98759 5 Answer by Jon Schneider for Favorite Visual Studio keyboard shortcuts Jon Schneider 2008-09-19T01:48:02Z 2009-03-11T02:28:12Z <p>Good old <kbd>Ctrl</kbd>+<kbd>Tab</kbd> for flipping back and forth between open documents.</p> <p>Visual Studio actually provides a very nice Ctrl+Tab implementation; I especially appreciate that the Ctrl+Tab document activation order is most-recently-used order, rather than simple "left-to-right" order, so that Ctrl+Tab (press once and release) can be used repeatedly to flip back and forth between the two most-recently-used documents, even when there are more than two documents open.</p> http://stackoverflow.com/questions/584268/is-it-best-to-put-the-page-name-before-the-site-name-or-vice-versa/587031#587031 3 Answer by Jon Schneider for Is it best to put the page name before the site name or vice-versa? Jon Schneider 2009-02-25T17:38:33Z 2009-02-25T17:44:50Z <p>Interestingly, Jakob Nielsen recently (March 2008) posted an "update" to his classic usability guidelines, listing some situations in which he now considers it a better idea to put the site name on the &lt;title&gt; tag before the specific page name / page content.</p> <p>From <a href="http://www.useit.com/alertbox/microcontent-brand-names.html" rel="nofollow">http://www.useit.com/alertbox/microcontent-brand-names.html</a>:</p> <blockquote> <p>Start search engine links with your company name when both of the following conditions hold:</p> <ul> <li><p>The link appears as a hit for queries that typically produce a SERP (search engine results page) that's full of junk links.</p></li> <li><p>You have a widely recognized and well-respected company name. </p></li> </ul> <p>...</p> <p>Note that this new guideline applies only to the links that appear in external search engines, such as the GYM (Google, Yahoo, Microsoft). </p> </blockquote> <p>Amazon.com is currently doing this. For example, the title of the Amazon.com page for the classic "Gang of Four" design patterns book is "Amazon.com: Design Patterns: Elements of Reusable Object-Oriented Software":</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">http://www.amazon.com/dp/0201633612/</a></p> http://stackoverflow.com/questions/490293/whats-the-best-tradeoff-between-text-and-icons-on-buttons/542699#542699 0 Answer by Jon Schneider for What's the best tradeoff between text and icons on buttons? Jon Schneider 2009-02-12T18:38:42Z 2009-02-12T18:38:42Z <p>(Note: I use "button" here to mean "the UI element on which the icon and/or text is located.")</p> <p>I think in almost all cases it's important to include text either on the button itself, or at least on a hover-over tooltip on the button, so that in the event that the icon's meaning isn't intuitive to a particular user, the user can find out the meaning by reading the text. (Note that the translation work still needs to be performed in either case.)</p> <p>A typical case for not including text directly on the button itself is when <em>space is at a premium</em>; when you want to fit a lot of buttons into a small area. Examples include the "toolbars" used in many desktop applications, and also in some web applications -- for example, the buttons that appear just above the StackOverflow answer text entry field!</p> <p>A good case for including icons is when the button <em>doesn't always appear in the same place</em>, and the user would benefit from being able to quickly visually scan for where the button is located. For example, if I have a lot of programs open on Windows and I want to quickly find my instance of Firefox in the Windows taskbar, I'll look for the little orange icon, rather than reading the text on each taskbar button. </p> http://stackoverflow.com/questions/440019/who-should-pay-for-programming-books/440070#440070 2 Answer by Jon Schneider for Who should pay for programming books? Jon Schneider 2009-01-13T18:01:34Z 2009-01-13T18:01:34Z <p>A previous employer of mine had a policy that worked pretty well. When a programmer wanted to obtain a new book, he or she had two options:</p> <p>(1) The company pays 100%. In this case, the company owns the book.</p> <p>(2) The company pays 50%. In this case, the developer owns the book (and can take it with him or her when they leave).</p> <p>Naturally, all purchases were still subject to manager approval, but the managers were pretty liberal about approving requests.</p> http://stackoverflow.com/questions/294562/what-does-a-college-degree-provide-that-experience-doesnt/344813#344813 4 Answer by Jon Schneider for What does a college degree provide that experience doesn't? Jon Schneider 2008-12-05T19:04:44Z 2008-12-05T19:04:44Z <p>One thing that I didn't see explicitly mentioned here: A college graduate will generally have had additional exposure to required course material that is not directly programming related, but is still useful in the performance of some of a programmer's job functions.</p> <p>A specific example that comes to mind for me is an English writing course that I was required to take in college (while pursuing my degree as a CS major); the course significantly improved my writing skills relative to the level they were at prior to taking the course. I've benefited from that experience on the job when doing the writing work that comes with a programming job, such as writing documentation (where "writing documentation" also includes high-quality in-code comments), communicating via email with others on my team and with business stakeholders, and so forth.</p> http://stackoverflow.com/questions/26625/one-large-monitor-or-dual-monitor-setup/338962#338962 0 Answer by Jon Schneider for One large monitor or dual-monitor setup? Jon Schneider 2008-12-03T22:19:44Z 2008-12-03T22:19:44Z <p>Not a direct answer to the question, but a useful tip for quickly getting two windows to be displayed side-by-side, filling the entire screen area of a single large monitor on Windows (XP or Vista):</p> <ol> <li>Select both of the Taskbar buttons for the windows to be displayed side-by-side in the Windows Taskbar. (Hold the Ctrl key to select the second one.)</li> <li>Right-click either one of the selected Taskbar buttons, and select Tile Vertically from the context menu that appears. </li> </ol> <p>You can also have the windows appear one on top of the other instead by selecting Tile Horizontally from the context menu.</p> http://stackoverflow.com/questions/276977/list-of-de-facto-standard-keyboard-shortcuts-for-windows-apps 3 List of de facto standard keyboard shortcuts for Windows apps? Jon Schneider 2008-11-10T03:07:09Z 2008-11-10T03:19:00Z <p>Let's say I'm developing a new desktop application for Windows. Is there a list somewhere that I can consult (either from Microsoft or a 3rd party) of keyboard shortcuts that all Windows applications should support?</p> <p>(Note: When I say "all Windows applications" here, I really mean "all Windows applications where a particular keyboard shortcut makes sense." For example, a standard "Begin debug session" shortcut might make sense across IDE applications such as Visual Studio and Eclipse, but not for other types of applications such as Notepad or Firefox. Also, it might not make sense for certain specialized applications that have their own complete custom sets of keyboard shortcuts, such as vi, to follow some of the standard conventions followed by other applications.)</p> <p>For example, I would argue that where it makes sense, Windows applications should support the following keyboard shortcuts, because they are de facto standards that most other applications support (just a partial list):</p> <p><strong>From anywhere:</strong></p> <ul> <li>F1 - Show Help</li> <li>Alt+F4 - Close application</li> </ul> <p><strong>While editing text:</strong></p> <ul> <li>Ctrl+A - Select all text (in current field, if applicable)</li> <li>Ctrl+Home/End - Move caret to start/end of current field</li> <li>Shift+[any navigation] - Select text between the previous caret position and the new caret position</li> </ul> <p><strong>While an item that can be edited or renamed is selected:</strong></p> <ul> <li>F2 - Rename or edit the current item</li> </ul> <p><strong>While a child window or tab has the focus in a multi-window / multi-tab application:</strong></p> <ul> <li>Ctrl+F4 - Close the current window/tab</li> <li>Ctrl+W - Close the current window/tab</li> <li>Ctrl+Tab / Ctrl+Shift+Tab - Activate next/previous window/tab</li> </ul> <p>And so on. (Again, these are just partial lists -- I think many more de facto standard shortcuts exist.)</p> <p>So: Is there a more complete list of these types of de facto standard keyboard shortcuts for Windows applications, that can be used by developers as a starting point for determining the keyboard shortcuts that a new application being developed should support?</p> <p>If a similar list of conventions for mouse behavior were available as well, that would be ideal. (e.g. double-left-click word = select word)</p> http://stackoverflow.com/questions/221534/intranet-vs-internet-web-application-considerations/221632#221632 2 Answer by Jon Schneider for Intranet Vs Internet Web application considerations Jon Schneider 2008-10-21T12:16:14Z 2008-10-21T12:16:14Z <p>Intranet applications can take advantage of the ability to link to resources on internal UNC paths (e.g. <code>\\corporateserver\devteam\ArchitectureDiagram.vsd</code>).</p> <p>However, be aware that browsers differ in how they handle such links. In Firefox, by default, clicking a link to a resource on a UNC path silently fails (clicking the link does nothing); <a href="http://kb.mozillazine.org/Links_to_local_pages_don%27t_work" rel="nofollow">some workarounds for this are available</a>. In Internet Explorer, links to UNC path resources <em>do</em> work by default.</p> http://stackoverflow.com/questions/205722/what-are-the-key-use-cases-for-use-of-virtualization-in-software-development/205723#205723 11 Answer by Jon Schneider for What are the key use cases for use of virtualization in software development? Jon Schneider 2008-10-15T17:50:25Z 2008-10-15T21:25:26Z <p>Application testing in multiple environments is one obvious use of virtualization that I'm aware of. Testing your application on other operating systems (without requiring additional physical computers to do so), as well as testing that involves software that generally only allows you to install a single version on a given machine (such as the Internet Explorer browser; running both IE6 and IE7 on the same machine is not an officially supported configuration), are good candidates for virtual machine usage.</p> http://stackoverflow.com/questions/198707/what-if-any-printable-character-did-a-user-type-based-on-the-values-in-a-given/201137#201137 0 Answer by Jon Schneider for What, if any, printable character did a user type based on the values in a given System.Windows.Forms.KeyEventArgs? Jon Schneider 2008-10-14T13:25:11Z 2008-10-14T13:25:11Z <p>Just as an idea to throw out there, if it looks like your <code>DataGridView</code> is intercepting keyboard events before they can reach your child control, can you provide your own handlers for the keyboard events you are interested in directly on the <code>DataGridView</code>, and in the handler method(s), (1) suppress the <code>DataGridView</code>'s normal handling of the event, and/or (2) manually pass the event along to your child control?</p> http://stackoverflow.com/questions/198233/how-to-make-a-window-have-taskbar-text-but-no-title-bar/198290#198290 2 Answer by Jon Schneider for How to make a window have taskbar text but no title bar Jon Schneider 2008-10-13T17:07:21Z 2008-10-13T17:07:21Z <p>One approach to look into might be to set the <code>FormBorderStyle</code> property of your <code>Form</code> to <code>None</code> (instead of <code>FixedDialog</code>). </p> <p>The drawback to this approach is that you lose the borders of your window as well as the Titlebar. A result of this is that you lose the form repositioning/resizing logic that you normally get "for free" with Windows Forms; you would need to deal with this by implementing your own form move/resize logic in the form's MouseDown and MouseMove event handlers.</p> <p>I would also be interested to hear about better solutions.</p> http://stackoverflow.com/questions/182749/do-you-change-the-way-you-think-when-moving-between-java-and-c/183911#183911 2 Answer by Jon Schneider for Do you change the way you think when moving between Java and C# Jon Schneider 2008-10-08T17:32:46Z 2008-10-08T17:32:46Z <p>The difference in how string equality comparisons work between Java and C# is one thing that needs to be kept in mind, particularly when moving from working in C# to working in Java.</p> <p>In C# you can do a value comparison on two <code>string</code> instances with the <code>==</code> operator:</p> <pre><code>// C# string value comparison example string string1 = GetStringValue1(); string string2 = GetStringValue2(); // Check to see whether the string values are equal if (string1 == string2) { // Do something... } </code></pre> <p>In Java, the <code>==</code> operator does a reference (not value) comparison on strings, so you need to use the <code>equals()</code> method:</p> <pre><code>// Java string value comparison example String string1 = getStringValue1(); String string2 = getStringValue2(); // Check to see whether the string values are equal if (string1.equals(string2)) { // Do something... } </code></pre> <p>Bottom line: When comparing strings in Java, don't forget that operator <code>==</code> doesn't do a value equality comparison, like it does when comparing strings in C#. (The same concept also applies to operator <code>!=</code>.)</p> http://stackoverflow.com/questions/180297/what-are-your-java-rules/180357#180357 4 Answer by Jon Schneider for What are your Java 'rules'? Jon Schneider 2008-10-07T20:51:01Z 2008-10-07T20:51:01Z <p><strong>Equality comparisons</strong></p> <p>When doing an equality comparison, think about whether you want to compare for value equality (do the two objects have the same value) or reference equality (are they the exact same object instance). For reference equality, use the <code>==</code> operator; for value equality, you will generally want to use the <code>.equals()</code> method. </p> <p>(Note that non-core Java classes may or may not have a meaningful .equals() implementation; most core classes do have a good .equals() implementation.)</p> <p>For example, a common mistake would be to do <code>(string1 == string2)</code> to try and determine whether the string variables <code>string1</code> and <code>string2</code> represent the same string value.</p> http://stackoverflow.com/questions/160711/net-time-sinkholes/160796#160796 4 Answer by Jon Schneider for .NET time sinkholes? Jon Schneider 2008-10-02T03:37:03Z 2008-10-02T03:37:03Z <p>In C# 2.0, the <code>All</code> member of the <code>FlagsAttribute</code>-style <code>DragDropEffects</code> enum, contrary to what the name of the member implies, does not include the <code>DragDropEffects.Link</code> member.</p> <p>At the time, I had assumed that DragDropEffects.All was equal to:</p> <pre><code>Copy | Link | Move | Scroll </code></pre> <p>But it is actually defined as:</p> <pre><code>Copy | Move | Scroll </code></pre> <p>(despite the existance of the <code>Link</code> member.)</p> <p>It does <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.dragdropeffects.aspx" rel="nofollow">look like this has been addressed</a> in C# 3.5. But in C# 2.0, the fact that the <code>All</code> member did not contain the <code>Link</code> bit was not at all clear from the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.dragdropeffects(VS.80).aspx" rel="nofollow">documentation</a> (quite possibly a bug).</p> <p>I <a href="http://blog.jonschneider.com/2006/10/dragdropeffectslink-bit-not-included.html" rel="nofollow">blogged about this issue</a> at the time that I had originally encountered it (late 2006).</p> http://stackoverflow.com/questions/151606/what-do-you-like-about-visual-studio-08/151654#151654 0 Answer by Jon Schneider for What do you like about Visual Studio 08? Jon Schneider 2008-09-30T03:28:13Z 2008-09-30T03:28:13Z <p>Visual Studio being rock-solid stable, at least in my experience, is certainly a plus! </p> <p>Eclipse, by comparison, is generally pretty solid, but I've had it run out of memory and crash on occasion when doing something like editing a complex .jsp page; Eclipse seems to get confused when there are lots of instances of opening-closing tag pairs where one tag is hard-coded in the HTML and the matching tag is written out dynamically by the Java code. I haven't ever run into this type of problem (where the IDE slows down and eventually crashes) with Visual Studio while editing similar pages in ASP.Net.</p> <p>I also really like the Ctrl+Tab (and Ctrl+Shift+Tab) tab-switching behavior in Visual Studio, where tab order is most-recently-used order. I install the Firefox add-on <a href="https://addons.mozilla.org/en-US/firefox/addon/112" rel="nofollow">LastTab</a> on all of my machines, which gives Firefox Ctrl+Tab behavior very similar to that of Visual Studio.</p> http://stackoverflow.com/questions/142058/xsl-relative-path-for-xslimport-or-xslinclude/142102#142102 0 Answer by Jon Schneider for Xsl relative path for xsl:import or xsl:include Jon Schneider 2008-09-26T21:30:32Z 2008-09-26T21:30:32Z <p>Is it possible that the "current directory" for purposes of the relative path might be the location of your ASP page, not your XSL file? In other words, if you haven't already, you might try:</p> <pre><code>&lt;xsl:import href="mysite/script.xsl"/&gt; </code></pre> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137426#137426 1 Answer by Jon Schneider for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Jon Schneider 2008-09-26T02:34:39Z 2008-09-26T02:34:39Z <p>The approach of <em>measuring something</em> to generate a random seed appears to be a pretty good one. The O'Reilly book <a href="http://books.google.com/books?id=t0IExLP-MPMC&amp;pg=PA524&amp;lpg=PA524" rel="nofollow">Practical Unix and Internet Security</a> gives a few similar additional methods of determining a random seed, such as asking the user to type a few keystrokes, and then measuring the time between keystrokes. (The book notes that this technique is used by PGP as a source of its randomness.)</p> <p>I wonder if <strong>the current temperature of a system's CPU</strong> (measured out to many decimal places) could be a viable component of a random seed. This approach would have the advantage of not needing to access the network (so the random generator wouldn't become unavailable when the network connection goes down). </p> <p>However, it's probably not likely that a CPU's internal sensor could accurately measure the CPU temperature out to enough decimal places to make the value truly viable as a random number seed; at least, not with "commodity-class hardware," as mentioned in the question!</p> http://stackoverflow.com/questions/1296059/eclipse-weblogic-plugin-problem-cant-start-weblogic-server/1299530#1299530 Comment by Jon Schneider on Eclipse WebLogic Plugin problem - can't start WebLogic server Jon Schneider 2009-08-20T01:38:55Z 2009-08-20T01:38:55Z Cool, glad you got the problem fixed. And thanks for sharing your solution, hopefully it will be helpful to others. http://stackoverflow.com/questions/1296059/eclipse-weblogic-plugin-problem-cant-start-weblogic-server/1296627#1296627 Comment by Jon Schneider on Eclipse WebLogic Plugin problem - can't start WebLogic server Jon Schneider 2009-08-19T01:18:55Z 2009-08-19T01:18:55Z @JamesB - Good question, I don't actually know! Another thought, although it might be using a sledgehammer to solve a much smaller problem: You could try using a tool like Filemon (<a href="http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx" rel="nofollow">technet.microsoft.com/en-us/sysinternals/&hellip;</a>) to see where (at what location(s)) Eclipse is looking for the startWebLogic.cmd file -- that might give you a clue. http://stackoverflow.com/questions/1267877/getting-the-path-filename-of-the-open-document-in-any-windows-application/1267889#1267889 Comment by Jon Schneider on Getting the path & filename of the open document in any Windows application Jon Schneider 2009-08-12T18:33:21Z 2009-08-12T18:33:21Z But then how does Windows' Recent Documents folder work (as noted in the original question)? That does seem to have the concept of an &quot;open document,&quot; and works across a lot of different application types. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164535#164535 Comment by Jon Schneider on What real life bad habits has programming given you? Jon Schneider 2009-08-02T11:03:31Z 2009-08-02T11:03:31Z @Bobby Jack - Just put your smiley outside the parens. It will still get your point across pretty well (and won't break your parens). :-) <a href="http://blog.jonschneider.com/2006/02/smileysemoticons-and-parenthesis.html" rel="nofollow">blog.jonschneider.com/2006/02/&hellip;</a> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/105293#105293 Comment by Jon Schneider on What was your first home computer? Jon Schneider 2009-07-06T18:29:34Z 2009-07-06T18:29:34Z @finnw: Double-checked, apparently my recollection was correct: CGA supported 4-bit color, so 16 colors. <a href="http://en.wikipedia.org/wiki/Color_Graphics_Adapter" rel="nofollow">en.wikipedia.org/wiki/Color_Graphics_Adapter/&hellip;</a> http://stackoverflow.com/questions/1028136/random-entry-from-dictionary/1028324#1028324 Comment by Jon Schneider on Random entry from dictionary Jon Schneider 2009-06-22T17:20:08Z 2009-06-22T17:20:08Z Nice implementation. It might be worth noting though that this might return the same element from the Dictionary more than once (which might or might not be the behavior that the original poster was looking for). http://stackoverflow.com/questions/1007185/how-to-retrieve-the-selected-text-from-the-active-window/1009487#1009487 Comment by Jon Schneider on How to retrieve the selected text from the active window Jon Schneider 2009-06-17T21:30:28Z 2009-06-17T21:30:28Z Keep in mind there are a few applications that do support clipboard copy of text, but assign a different meaning to Ctrl+C than &quot;clipboard copy.&quot; One example that comes to mind is the command shell (cmd.exe). http://stackoverflow.com/questions/988963/should-programmers-take-business-classes-training/989041#989041 Comment by Jon Schneider on Should programmers take business classes/training? Jon Schneider 2009-06-13T00:20:16Z 2009-06-13T00:20:16Z This answer (as of the time I write this comment) is just copy &amp; paste from 3 different answers posted earlier on this question. http://stackoverflow.com/questions/158319/cross-browser-onload-event-and-the-back-button/201406#201406 Comment by Jon Schneider on Cross-browser onload event and the Back button Jon Schneider 2009-05-20T20:38:28Z 2009-05-20T20:38:28Z @Pumbaa80, you're right -- I gave this a try in Firefox 3, and reproduced your results. Weird! http://stackoverflow.com/questions/305223/jon-skeet-facts/468613#468613 Comment by Jon Schneider on Jon Skeet Facts? Jon Schneider 2009-05-04T18:40:38Z 2009-05-04T18:40:38Z LOL and +1 for &quot;perfection is close to Jon Skeet&quot; :-) http://stackoverflow.com/questions/745570/how-can-social-networking-sites-make-you-a-better-developer/745611#745611 Comment by Jon Schneider on How can social networking sites make you a better developer? Jon Schneider 2009-04-22T16:46:36Z 2009-04-22T16:46:36Z Scott Hanselman (the original poster) did, in fact, tape and post his talk: <a href="http://www.hanselman.com/blog/SocialNetworkingForDevelopersConferenceTalkVideo.aspx" rel="nofollow">hanselman.com/blog/&hellip;</a> http://stackoverflow.com/questions/490293/whats-the-best-tradeoff-between-text-and-icons-on-buttons/490305#490305 Comment by Jon Schneider on What's the best tradeoff between text and icons on buttons? Jon Schneider 2009-02-12T18:23:36Z 2009-02-12T18:23:36Z What <i>is</i> the &quot;Save&quot; icon? A floppy disk? (I had to go check -- yes, it is in fact a floppy disk in my version of MS Word.) With floppy drives no longer even being included on most new machines, I wonder, will users still recognize what that icon means 10 years from now? http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537760#537760 Comment by Jon Schneider on Where do you keep your code? Jon Schneider 2009-02-11T18:16:08Z 2009-02-11T18:16:08Z +1. Short and easy to type at the command prompt, or in the address bar of an Explorer window. http://stackoverflow.com/questions/402881/is-the-reset-button-really-required/403577#403577 Comment by Jon Schneider on Is the reset button really required? Jon Schneider 2009-01-09T18:25:47Z 2009-01-09T18:25:47Z +1 for your first paragraph making me LOL :-) http://stackoverflow.com/questions/426042/want-to-sell-own-application-where-to-start/426127#426127 Comment by Jon Schneider on Want to sell own application. Where to start? Jon Schneider 2009-01-09T17:49:25Z 2009-01-09T17:49:25Z I was going to post this same link. Recommended.