User Adam Neal - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:24:59Z http://stackoverflow.com/feeds/user/13791 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797424/vim-find-text-in-a-specific-column 1 Vim: Find text in a specific column Adam Neal 2009-11-25T14:50:21Z 2009-11-25T15:05:58Z <p>When searching for text in Vim (specifically gVim, but it shouldn't matter), how do you specify what column to search? I'm looking for values in one column only.</p> http://stackoverflow.com/questions/1763184/string-formatting-expressions-python/1763217#1763217 6 Answer by Adam Neal for String formatting expressions (Python) Adam Neal 2009-11-19T13:14:54Z 2009-11-19T13:21:13Z <p>I thought I read that the <code>%</code> operator is being deprecated in 3.1 already, so I'd stick with the <code>format()</code> function.</p> <p>See <a href="http://www.python.org/doc/3.0/whatsnew/3.0.html#pep-3101-a-new-approach-to-string-formatting" rel="nofollow">PEP 3101: A New Approach To String Formatting</a></p> http://stackoverflow.com/questions/1751434/how-can-i-reproduce-the-firefox-faded-image-text-dragging-effect-in-net 1 How can I reproduce the Firefox faded image/text dragging effect in .NET? Adam Neal 2009-11-17T20:11:52Z 2009-11-17T20:21:49Z <p>Ok, I know this is probably a pretty newb question, but when it comes to graphics programming, I <em>am</em> a newb :)</p> <p><strong>How does Firefox achieve the drag and drop effect while displaying the nice faded copy of the selected image or text?</strong> See below for an example with the SO logo.</p> <p>Also, how could I reproduce this effect in C#/VB.NET? (preferably WinForms as I don't really know WPF yet.)</p> <p>I also noticed that the origin of the "fade" is based on the cursor position within the image (go ahead, try it now, you'll see what I mean!)</p> <p>I suppose I could delve into the source <a href="https://developer.mozilla.org/en/download%5Fmozilla%5Fsource%5Fcode" rel="nofollow">over at MDC</a>, but I thought someone here might already be familiar with this technique.</p> <p><img src="http://devneal.files.wordpress.com/2009/11/ff%5Fdrag%5Fdrop.jpg" alt="Firefox drag &amp; drop"></p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts 88 Favorite Visual Studio keyboard shortcuts Adam Neal 2008-09-19T01:22:57Z 2009-11-14T14:49:25Z <p>What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse! <br /></p> <p><strong>One</strong> per answer please.</p> http://stackoverflow.com/questions/1722896/vb-to-c-functions/1722994#1722994 1 Answer by Adam Neal for VB to C# Functions Adam Neal 2009-11-12T15:22:46Z 2009-11-12T15:22:46Z <p>I believe some of these like <code>Mid()</code> are still available in the .NET Framework in the Microsoft.VisualBasic namespace which you can still reference from C# code.</p> http://stackoverflow.com/questions/1668766/does-a-win32-controls-control-id-change-with-each-run 1 Does a Win32 control's control ID change with each run? Adam Neal 2009-11-03T17:08:57Z 2009-11-04T06:19:42Z <p>In other words, <strong>can I count on a control ID as a reliable identifier?</strong></p> <p>From some reading I've done, it sounds like .NET controls can have control IDs that change with every run, is this so for Win32 apps as well, or are they something that's hardcoded in the source?</p> <p>The window/control in question is actually an Internet Explorer dialog if that helps.</p> http://stackoverflow.com/questions/1633926/web-app-testing/1634412#1634412 0 Answer by Adam Neal for web app testing Adam Neal 2009-10-27T23:57:39Z 2009-10-27T23:57:39Z <p>Another alternative to Selenium is <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> (<strong>W</strong>eb <strong>A</strong>pplication <strong>T</strong>esting <strong>i</strong>n .<strong>N</strong>ET). Same thing, you can record tests, modify and run in IE or Firefox.</p> http://stackoverflow.com/questions/1624412/how-to-write-visual-studio-addin-for-custom-text-coloring/1624545#1624545 0 Answer by Adam Neal for How to write Visual Studio addin for custom text coloring? Adam Neal 2009-10-26T12:34:31Z 2009-10-26T12:34:31Z <p>This question might help:</p> <p><a href="http://stackoverflow.com/questions/505226/custom-syntax-highlighting-for-vs-2008">Custom syntax highlighting for VS 2008</a></p> <p>They talk about building on top of DxCore, which is the base that <a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/Coding%5FAssistance/" rel="nofollow">CodeRush</a> is built on.</p> http://stackoverflow.com/questions/1601699/datetime-now-as-parameter-value-c/1601709#1601709 0 Answer by Adam Neal for DateTime.Now as parameter value C# Adam Neal 2009-10-21T15:40:36Z 2009-10-21T15:40:36Z <p>Throw an ArgumentException if your date arg is in the past? This seems the simplest.</p> http://stackoverflow.com/questions/1549538/best-method-for-website-automation/1592325#1592325 1 Answer by Adam Neal for Best method for Website Automation? Adam Neal 2009-10-20T03:45:27Z 2009-10-20T03:45:27Z <p>Use <a href="http://watin.sourceforge.net/" rel="nofollow">Watin</a>. It's an open source .NET library to automate IE and Firefox. It's a lot easier than manipulating raw HTTP requests or hacking the WebBrowser control to do what you want, and you can run it from a console app or service, since you mentioned this wouldn't be a WinForms app. </p> <p>You can also make the browser window invisible if needed, since you mentioned only showing this to the user at a certain point.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234399#234399 841 Answer by Adam Neal for What is your best programmer joke? Adam Neal 2008-10-24T17:03:41Z 2009-10-19T19:57:54Z <p>A SQL query goes into a bar, walks up to two tables and asks, "Can I join you?"</p> http://stackoverflow.com/questions/1567264/are-net-resource-files-only-for-localization 1 Are .NET resource files only for localization? Adam Neal 2009-10-14T15:56:39Z 2009-10-14T16:02:57Z <p>I've used .resx files in the past to store text files and other things - queries for example. It works great because I can say Resources.Queries.BlahQuery. (Yes, I know we should probably used stored procedures, but that's another story...)</p> <p>I'll never be doing any localization on these resources.</p> <p>Is this a bad idea? <strong>Am I misusing .NET resource files?</strong> </p> http://stackoverflow.com/questions/1532756/automating-mouse-movement-and-clicks-in-firefox-programmatically/1532948#1532948 1 Answer by Adam Neal for Automating Mouse Movement and Clicks in Firefox programmatically Adam Neal 2009-10-07T17:08:54Z 2009-10-07T17:08:54Z <p>To expand on @Chris Marisic's answer, you can actually use AutoIt from C# (or other languages) using AutoItX. I haven't tried this, but apparently you can compile it to a DLL and call it from your code, see <a href="http://www.autoitscript.com/forum/index.php?showtopic=39262" rel="nofollow">http://www.autoitscript.com/forum/index.php?showtopic=39262</a></p> http://stackoverflow.com/questions/1468742/creating-a-webbrowser-control-in-a-background-thread-in-backgroundworker/1492226#1492226 0 Answer by Adam Neal for Creating a webbrowser control in a background thread in backgroundworker Adam Neal 2009-09-29T12:25:10Z 2009-09-29T12:25:10Z <p>Having been down both roads, I would recommend <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a>, an open source library to automate IE and Firefox. The WebBrowser control is good for displaying content, but for anything more complex it becomes a big hassle.</p> http://stackoverflow.com/questions/1474941/is-there-a-keyboard-shortcut-to-quickly-find-and-open-a-file-in-visual-studio-200/1474972#1474972 2 Answer by Adam Neal for Is there a keyboard shortcut to quickly find and open a file in Visual Studio 2005/2008 like how they do it in TextMate? Adam Neal 2009-09-25T01:14:19Z 2009-09-25T12:14:09Z <p>You can hit <kbd>Ctrl</kbd>+<kbd>D</kbd> to go to the search box, then type <strong>>of filename</strong> (with autocomplete).</p> <p>You can also do this and other commands in the <a href="http://msdn.microsoft.com/en-us/library/c785s0kz.aspx" rel="nofollow">command window</a> or the <a href="http://msdn.microsoft.com/en-us/library/f177hahy%28VS.80%29.aspx" rel="nofollow">immediate window</a>.</p> <p>Or, if you don't mind buying, ReSharper has <a href="http://www.jetbrains.com/resharper/features/navigation%5Fsearch.html#Go%5Fto%5FFile" rel="nofollow">Go to File</a> which I highly recommend. It's <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>N</kbd> and it brings up a nice search dialog that supports wildcards and other shortcuts.</p> http://stackoverflow.com/questions/1446960/pretty-print-excel-formulas 1 Pretty Print Excel Formulas? Adam Neal 2009-09-18T21:41:18Z 2009-09-19T00:41:29Z <p>Does anyone know of a (free) tool to pretty print Excel formulas? A Google search didn't turn anything up. </p> <p>I've got a few worksheets of semi-complex formulas to slog through, so this would make my life a bit easier.</p> <p>I'm just looking to turn something like this</p> <pre><code>AC6+AD6+(IF(H6="Yes",1,IF(J6="Yes",1,0)))+IF(X6="Yes",1,0) </code></pre> <p>into something more readable without manually doing it in Vim or the like. Excel does do color-matching on the parentheses, but it's still all mashed together on one line.</p> http://stackoverflow.com/questions/1425109/selenium-dialog-box/1429498#1429498 0 Answer by Adam Neal for Selenium - dialog box Adam Neal 2009-09-15T20:41:07Z 2009-09-15T20:41:07Z <p><a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> can handle logon and other types of dialogs.</p> http://stackoverflow.com/questions/1412905/is-there-a-way-to-pass-arbitrary-text-to-vim 1 Is there a way to pass arbitrary text to Vim? Adam Neal 2009-09-11T19:43:19Z 2009-09-11T19:46:12Z <p>I want a way to pass some literal text to Vim. I've seen that it can <a href="http://www.vim.org/htmldoc/usr%5F26.html" rel="nofollow">read from stdin</a> with the "-" argument, so you can pipe things to it, e.g. the output of other commands.</p> <p>But is there a way to pass <strong>any</strong> text into it like </p> <pre><code>vim - "Here's some random text" </code></pre> <p>and open Vim with that string in the buffer? </p> <p>It complains if I try this command...</p> http://stackoverflow.com/questions/1412376/c-http-programming/1412783#1412783 0 Answer by Adam Neal for C# HTTP programming Adam Neal 2009-09-11T19:13:00Z 2009-09-11T19:13:00Z <p>If you don't want to go the HttpWebRequest route, I would suggest <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a>. Makes it very easy to automate IE or Firefox and not worry about the internals of the HTTP requests.</p> http://stackoverflow.com/questions/1404669/how-to-use-regex/1404926#1404926 1 Answer by Adam Neal for How to use RegEx? Adam Neal 2009-09-10T12:14:45Z 2009-09-10T12:14:45Z <p>Try <a href="http://www.ultrapico.com/Expresso.htmhttp%3A//" rel="nofollow">Expresso</a>, good for building .NET regexes and teaching you the syntax at the same time.</p> http://stackoverflow.com/questions/1349440/how-can-i-send-a-file-and-the-page-in-an-http-response 0 How can I send a file AND the page in an HTTP response? Adam Neal 2009-08-28T21:24:48Z 2009-08-28T21:46:15Z <p>I have an ASP.NET page where I'm generating an Excel spreadsheet and sending that in the response (content-disposition header). That part works great, but I have a button that never becomes re-enabled because the original page isn't part of the response.</p> <p>Here's the function I'm using:</p> <pre><code>Public Shared Sub WriteToResponse(ByVal theWorkBook As Workbook, ByVal FileName As String, ByVal resp As HttpResponse) Dim theStream As New System.IO.MemoryStream() theWorkBook.Save(theStream) Dim byteArr As Byte() = DirectCast(Array.CreateInstance(GetType(Byte), theStream.Length), Byte()) theStream.Position = 0 theStream.Read(byteArr, 0, CInt(theStream.Length)) theStream.Close() resp.Clear() resp.AddHeader("content-disposition", "attachment; filename=" &amp; FileName) resp.BinaryWrite(byteArr) resp.End() End Sub </code></pre> <p>I tried not clearing the response and using AppendHeader instead of AddHeader, but the response still contains only the file.</p> <p>What am I missing? Do I need to use a different header? I found this <a href="http://forums.asp.net/t/905947.aspx" rel="nofollow">unanswered question on the ASP.NET forums</a>; sounds like my problem.</p> http://stackoverflow.com/questions/811422/preformatted-text-in-vb-what-is-the-c-equivalent-in-vb/1347359#1347359 2 Answer by Adam Neal for Preformatted text in VB - What is the C# @ equivalent in vb? Adam Neal 2009-08-28T14:28:07Z 2009-08-28T14:28:07Z <p>Like others said, there's no @ operator, so if you get into heavy string manipulation, use <strong>String.Format</strong> </p> <p>IMHO, this </p> <pre><code>Dim text As String = String.Format("this is {0} some preformatted {0} text", Environment.Newline) </code></pre> <p>is more readable than this</p> <pre><code>Dim text As String = "this is" &amp; Environment.NewLine _ &amp; " some preformatted" &amp; Environment.NewLine _ &amp; " text" </code></pre> http://stackoverflow.com/questions/1167243/watin-logondialoghandler-windows-2000 0 WatiN LogonDialogHandler & Windows 2000 Adam Neal 2009-07-22T18:30:22Z 2009-08-25T16:51:51Z <p>I'm having trouble logging into a secure site with a WatiN LogonDialogHandler running on a IE6 / Windows 2000 machine. It doesn't fill in the userid/password for the proxy site, but works fine on a IE7 / Windows XP machine.</p> <p><strong>Has anyone ever had/solved this problem?</strong></p> <p>I found <a href="http://www.dreamincode.net/forums/showtopic74996.htm" rel="nofollow">the same question on dream.in.code</a>, but it's unanswered.</p> <p>I know upgrading to IE7 might solve this problem, but upgrading is not an option right now.</p> http://stackoverflow.com/questions/1167243/watin-logondialoghandler-windows-2000/1329539#1329539 0 Answer by Adam Neal for WatiN LogonDialogHandler & Windows 2000 Adam Neal 2009-08-25T16:51:51Z 2009-08-25T16:51:51Z <p>Ha, forgot I had posted this...I figured out the reason(s) that WatiN wasn't handling logon (or any) dialogs in IE6:</p> <ol> <li>The check for the <strong>iexplore.exe</strong> process name was case sensitive. </li> <li>IE6 has a different logon dialog than IE7, so the code to send clicks and text to its controls didn't work.</li> </ol> <p>See the <a href="http://sourceforge.net/tracker/?func=detail&amp;atid=843730&amp;aid=2831655&amp;group%5Fid=167632" rel="nofollow">patch I submitted</a> for more info.</p> <p>Apparently no one else is trying to handle IE6 dialogs with WatiN. Lucky them!</p> http://stackoverflow.com/questions/1276403/simple-vim-commands-you-wish-youd-known-earlier/1299579#1299579 1 Answer by Adam Neal for Simple VIM commands you wish you'd known earlier Adam Neal 2009-08-19T12:23:08Z 2009-08-19T12:29:23Z <p><strong>cw</strong></p> <p>Change word - deletes the word under the cursor and puts you in insert mode to type a new one. Of course this works with other movement keys, so you can do things like <strong>c$</strong> to change to the end of the line.</p> <p><strong>f + character</strong></p> <p>Finds the next occurrence of the character on the current line. So you can do <strong>vft</strong> to select all the text up to the next "t" on the current line. It's another movement key, so it works with other commands too.</p> http://stackoverflow.com/questions/746346/c-how-to-send-keyboard-scan-codes-manually/755916#755916 1 Answer by Adam Neal for C#: How to send keyboard scan codes manually? Adam Neal 2009-04-16T12:31:43Z 2009-04-16T12:31:43Z <p>This may be overkill, but you could try using <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoItX</a> which is a way to use AutoIt as a DLL. I've only written standalone scripts, but I know AutoIt makes it very easy to simulate pressing the Windows key. </p> <p>For example, to open the run dialog is just:</p> <blockquote> <p>Send("#r") ;Win + R = run</p> </blockquote> http://stackoverflow.com/questions/731189/vim-duplicate-selection/731197#731197 0 Answer by Adam Neal for Vim duplicate selection Adam Neal 2009-04-08T18:19:00Z 2009-04-08T18:19:00Z <p>Do you want to copy/paste the whole line? If so, get out of visual mode, use </p> <blockquote> <p>yy</p> </blockquote> <p>to <strong>y</strong>ank the whole line, then </p> <blockquote> <p>p</p> </blockquote> <p>to <strong>p</strong>aste.</p> http://stackoverflow.com/questions/726710/fake-a-form-submission-with-c-webclient/726842#726842 0 Answer by Adam Neal for Fake a form submission with C# WebClient Adam Neal 2009-04-07T17:41:07Z 2009-04-07T17:41:07Z <p>Agreeing with <a href="http://stackoverflow.com/questions/726710/fake-a-form-submission-with-c-webclient/726747#726747">@wentbackward</a>, <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> is another alternative.</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98614#98614 12 Answer by Adam Neal for Favorite Visual Studio keyboard shortcuts Adam Neal 2008-09-19T01:24:05Z 2009-03-11T01:21:48Z <p>I like <kbd>Ctrl</kbd>+<kbd>M</kbd>, <kbd>Ctrl</kbd>+<kbd>M</kbd>. To expand/collapse the current code block.</p> http://stackoverflow.com/questions/610931/javascript-disabled-best-practices/611141#611141 0 Answer by Adam Neal for Javascript disabled best practices? Adam Neal 2009-03-04T15:45:44Z 2009-03-04T15:45:44Z <p><a href="http://stackoverflow.com/questions/373818/whats-with-those-do-not-use-javascript-people/374122#374122">Here's a question</a> (<a href="http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled">and another</a>) that have lots of (differing) opinions on building a site that gracefully handles JavaScript being disabled.</p> http://stackoverflow.com/questions/1797424/vim-find-text-in-a-specific-column Comment by Adam Neal on Vim: Find text in a specific column Adam Neal 2009-11-25T14:56:29Z 2009-11-25T14:56:29Z Yes, text at a certain position in the line, for example, the 5th character of the line. http://stackoverflow.com/questions/1763184/string-formatting-expressions-python/1763217#1763217 Comment by Adam Neal on String formatting expressions (Python) Adam Neal 2009-11-19T13:22:46Z 2009-11-19T13:22:46Z I just know what the page said: it's going to be deprecated in 3.1 and removed at a later time...don't shoot the messenger :) http://stackoverflow.com/questions/1763184/string-formatting-expressions-python/1763217#1763217 Comment by Adam Neal on String formatting expressions (Python) Adam Neal 2009-11-19T13:21:00Z 2009-11-19T13:21:00Z Found the correct link, updated my post. http://stackoverflow.com/questions/1751434/how-can-i-reproduce-the-firefox-faded-image-text-dragging-effect-in-net/1751459#1751459 Comment by Adam Neal on How can I reproduce the Firefox faded image/text dragging effect in .NET? Adam Neal 2009-11-17T21:00:52Z 2009-11-17T21:00:52Z Thanks, good example! That should get me started. http://stackoverflow.com/questions/28764/dealing-with-distractions/28767#28767 Comment by Adam Neal on Dealing With Distractions Adam Neal 2009-10-01T19:01:45Z 2009-10-01T19:01:45Z I tried the white noise, but ended up really liking the brown noise much more. For me at least, it is less distracting and really blocks out all other sounds. And it sounds like when you put your ear to a seashell! ;) http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411429#1411429 Comment by Adam Neal on How to become a "faster" programmer? Adam Neal 2009-09-30T14:58:48Z 2009-09-30T14:58:48Z +1 for this. I've improved my speed a lot by just trying to learn a new keyboard shortcut every week or so (this mostly applies to Vim, but Visual Studio too). http://stackoverflow.com/questions/1446960/pretty-print-excel-formulas/1447343#1447343 Comment by Adam Neal on Pretty Print Excel Formulas? Adam Neal 2009-09-22T15:35:46Z 2009-09-22T15:35:46Z Oh, you mentioned calling it from the immediate window at the top of the answer...sorry, missed that. Thanks again for the help! http://stackoverflow.com/questions/1446960/pretty-print-excel-formulas/1447343#1447343 Comment by Adam Neal on Pretty Print Excel Formulas? Adam Neal 2009-09-19T19:54:53Z 2009-09-19T19:54:53Z This is great, thanks! One question, am I supposed to call this from a cell? It doesn't like the <b>[cell].formula</b> part for some reason. If I copy the literal formula though, it works great! http://stackoverflow.com/questions/1446960/pretty-print-excel-formulas/1446976#1446976 Comment by Adam Neal on Pretty Print Excel Formulas? Adam Neal 2009-09-18T21:49:35Z 2009-09-18T21:49:35Z Looks promising, thanks! I'll check it out. http://stackoverflow.com/questions/1032216/capturing-key-presses-for-form-but-not-for-controls/1032225#1032225 Comment by Adam Neal on Capturing key presses for form but not for controls Adam Neal 2009-08-26T15:22:20Z 2009-08-26T15:22:20Z +1 this is the easiest. http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer/242340#242340 Comment by Adam Neal on Are you a good or bad programmer? Adam Neal 2009-08-21T16:04:18Z 2009-08-21T16:04:18Z Answer tagged as: belongs-on-skeet-overflow :) http://stackoverflow.com/questions/1307577/how-do-we-as-a-community-help-encourage-programming-in-public-schools-or-stat/1307649#1307649 Comment by Adam Neal on How do we, as a community, help encourage programming in public schools? (Or state Schools for the UKers.) Adam Neal 2009-08-20T22:00:46Z 2009-08-20T22:00:46Z I probably wouldn't be a programmer today if I hadn't had a VB6 class in high school. And yes, I wrote horrible code at first, but I put in the time and I got better. And I'll be even better tomorrow because I keep working on it. I think good hiring practices will keep out those who &quot;know just enough to be dangerous&quot;. http://stackoverflow.com/questions/562971/smelly-class-names Comment by Adam Neal on Smelly class names? Adam Neal 2009-08-19T20:08:17Z 2009-08-19T20:08:17Z Came here to post about function names with <b>and</b> and <b>or</b> in the name...glad everyone else agrees these are signs of bad code :) http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424019#424019 Comment by Adam Neal on What's your favorite "programmer ignorance" pet peeve? Adam Neal 2009-08-14T12:26:32Z 2009-08-14T12:26:32Z @lispmachine: That's like saying no carpenter should have a hammer because it can be used as a weapon. I agree with the goal though; we just need to have Ctrl-V hooked up to an electric shock :) http://stackoverflow.com/questions/224818/what-single-piece-of-software-do-you-most-admire-and-why/225021#225021 Comment by Adam Neal on What single piece of software do you most admire, and why? Adam Neal 2009-08-02T00:02:25Z 2009-08-02T00:02:25Z I would up-vote this twice if I could. Can't say enough for doing so much without ever reaching over for the mouse.