User Jonathan Webb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:54:27Z http://stackoverflow.com/feeds/user/1518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/990364/how-can-i-get-a-regex-to-check-that-a-string-only-contains-alpha-characters-a-z/990397#990397 1 Answer by Jonathan Webb for How can I get a regex to check that a string only contains alpha characters [a-z] or [A-Z]? Jonathan Webb 2009-06-13T09:30:38Z 2009-06-13T09:30:38Z <p>There are excellent interactive tools for developing and testing regex expressions:</p> <ul> <li><a href="http://www.regexbuddy.com/" rel="nofollow">Regex Buddy</a> - €30</li> <li><a href="http://www.weitz.de/regex-coach/" rel="nofollow">Regex Coach</a> - free</li> </ul> <p>They're a great help because they tell you right away if your expression works as expected and even allow you to step through and debug.</p> http://stackoverflow.com/questions/989546/will-optimizing-code-become-unnecessary/989611#989611 0 Answer by Jonathan Webb for Will optimizing code become unnecessary? Jonathan Webb 2009-06-13T00:31:40Z 2009-06-13T00:31:40Z <p>Optimizing code will always be required to some degree and not just to speed up execution speed and lower memory usage. Finding the optimal energy-efficient method of processing information will be a major requirement in data-centres for example. Profiling skills are going to become a lot more important!</p> http://stackoverflow.com/questions/591105/please-help-me-create-a-regular-expression-to-parse-my-sql-statement/591297#591297 0 Answer by Jonathan Webb for Please help me create a regular expression to parse my SQL statement Jonathan Webb 2009-02-26T16:24:07Z 2009-02-26T16:24:07Z <p>Interactive tools like <a href="http://www.regexbuddy.com/" rel="nofollow" title="RegexBuddy home page">RegexBuddy</a> ($40) or <a href="http://weitz.de/regex-coach/" rel="nofollow" title="The Regex Coach Home page&quot;">The Regex Coach</a> (free) would really help you to design and debug regular expressions for most platforms.</p> http://stackoverflow.com/questions/172436/net-table-adapters-get-vs-fill/543171#543171 2 Answer by Jonathan Webb for .NET Table Adapters: Get vs. Fill? Jonathan Webb 2009-02-12T20:48:15Z 2009-02-12T20:48:15Z <p>Using Fill can be great for debugging exceptions because the DataTable passed into the method can be interrogated for more details. Get does not return in the same situation.</p> <p>Tips:</p> <ul> <li>DataTable.GetErrors() returns an array of DataRow instances that are in error</li> <li>DataRow.RowError contains a description of the row error</li> <li>DataRow.GetColumnsInError() returns an array of DataColumn instances in error</li> </ul> http://stackoverflow.com/questions/529969/relating-mismatched-column-in-an-xsd/543050#543050 0 Answer by Jonathan Webb for Relating mismatched column in an xsd? Jonathan Webb 2009-02-12T20:17:47Z 2009-02-12T20:17:47Z <p>What are the DataTypes of the 'int' and 'shortint' DataColumns in the DataSet?</p> <p>If the 'int' column is System.Int32 then can you change the 'shortint' column to the same?</p> <p>This should allow a Relation to be made using the two columns.</p> http://stackoverflow.com/questions/244268/free-coderush-express-worth-the-time/536263#536263 3 Answer by Jonathan Webb for Free CodeRush Express: worth the time? Jonathan Webb 2009-02-11T10:33:13Z 2009-02-11T10:33:13Z <p>@<strong>John Kraft</strong>, you can disable the smart cut/copy in CodeRush Xpress.</p> <p>Set this registry key value that <strong>Benjol</strong> mentions to 0:</p> <pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Developer Express\CodeRush for VS\3.2\HideMenu </code></pre> <p>Restart Visual Studio then press <strong>CTRL+SHIFT+ALT+O</strong>.</p> <p>Go to <strong>Editor | Clipboad | Smart Cut/Copy</strong> and uncheck <strong>Enabled</strong>. Back to normal.</p> <p>As regards usage, I've noticed that solutions take a fair bit longer to open but everything is OK after that. It's strange how you can almost feel the missing refactorings after a while.</p> http://stackoverflow.com/questions/527858/visual-studio-2008-c-verbatim-fonts-and-colors-option 0 Visual Studio 2008 (C# @ Verbatim) Fonts and Colors option Jonathan Webb 2009-02-09T11:55:28Z 2009-02-09T13:39:03Z <p>I just read <strong><a href="http://stackoverflow.com/users/241/secretgeek">secretGeek</a></strong>'s fun post on <strong><a href="http://www.secretgeek.net/6min_program.asp" rel="nofollow" title="8 ways to be a better programmer in 6 minutes">8 ways to be a better programmer in 6 minutes</a></strong> and really liked the tip on making <strong>hard-coded strings look ugly</strong>.</p> <p>When I tried to change the <strong>Fonts and Colors</strong> setting to do this in my copy of Visual Studio 2008 Professional, I found that the <strong>String (C# @ Verbatim)</strong> option was not in the <strong>Display items</strong> list. The option <em>is</em> listed in Visual C# Express 2008.</p> <p>Does anyone know how to fix this?</p> <p>Thanks</p> http://stackoverflow.com/questions/527858/visual-studio-2008-c-verbatim-fonts-and-colors-option/528166#528166 0 Answer by Jonathan Webb for Visual Studio 2008 (C# @ Verbatim) Fonts and Colors option Jonathan Webb 2009-02-09T13:39:03Z 2009-02-09T13:39:03Z <p>OK, after a bit of experimentation, this worked for me.</p> <p>SysInternals <a href="http://technet.microsoft.com/en-us/sysinternals/bb896652.aspx" rel="nofollow" title="Download site for SysInternals regmon">regmon</a> showed that the <strong>Font And Colors</strong> options for VS2008 Pro are stored in the registry key:</p> <pre><code>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\FontAndColors </code></pre> <p>Deleting this and restarting Visual Studio caused the key to be rebuilt and restored the <strong>String (C# @ Verbatim)</strong> option.</p> <p>The option is missing from the VS2005 Pro key too, so maybe that's why it never appeared in 2008.</p> <p>Is Magenta over Lime too masochistic??</p> http://stackoverflow.com/questions/37936/handling-xsd-dataset-constraintexceptions 0 Handling XSD Dataset ConstraintExceptions Jonathan Webb 2008-09-01T13:27:08Z 2009-01-31T00:02:39Z <p>Does anyone have any tips for dealing with ConstraintExceptions thrown by XSD datasets?</p> <p>This is the exception with the cryptic message:</p> <pre><code>System.Data.ConstraintException : Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. </code></pre> http://stackoverflow.com/questions/261580/overflow-when-calculating-a-const-in-vba 5 Overflow when calculating a const in VBA Jonathan Webb 2008-11-04T11:28:55Z 2008-11-04T13:23:04Z <p>This declaration causes an overflow in VBA:</p> <pre><code>Const OVERFLOWS As Long = 10 * 60 * 60 </code></pre> <p>whereas setting the value directly is fine:</p> <pre><code>Const COMPILES_OK As Long = 36000 </code></pre> <p>How do you persuade VBA to treat literal integers as longs?</p> <p>Thanks</p> http://stackoverflow.com/questions/94864/tasklist-replacement-for-visual-studio/257576#257576 1 Answer by Jonathan Webb for Tasklist replacement for Visual Studio Jonathan Webb 2008-11-02T23:34:13Z 2008-11-02T23:34:13Z <p>How about the <a href="http://our.fogbugz.com/default.asp?W984" rel="nofollow"><strong>FogBugz add-in</a></strong> for Visual Studio 2005 and 2008?</p> http://stackoverflow.com/questions/235533/asp-net-container-specific-master-pages-for-safari-or-chrome 0 ASP.NET Container-Specific Master Pages for Safari or Chrome Jonathan Webb 2008-10-24T22:54:26Z 2008-10-28T10:36:40Z <p>Has anyone been able to create <strong>Container-Specific Master Pages</strong> for Safari or Chrome?</p> <p>I can't find any ".browser" files for either of these.</p> <p>How often is the %SystemRoot%\Microsoft.NET\Framework\version\CONFIG\Browsers directory updated?</p> <p>Thanks</p> http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/237339#237339 1 Answer by Jonathan Webb for What are the best movies about Geeks/Programmers/Hackers. (for inspiration) Jonathan Webb 2008-10-26T01:32:19Z 2008-10-26T01:32:19Z <p>If we're including TV shows then <a href="http://www.imdb.com/title/tt0084978/" rel="nofollow">Automan</a>. It was like Tron in reverse.</p> http://stackoverflow.com/questions/237275/how-can-i-find-all-the-public-fields-of-an-object-in-c/237308#237308 1 Answer by Jonathan Webb for How can I find all the public fields of an object in C#? Jonathan Webb 2008-10-26T01:09:15Z 2008-10-26T01:09:15Z <p>You can obtain all the object Fields declared directly in the class with the BindingFlags:</p> <pre><code>GetFields(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly) </code></pre> <p>and all object Fields including inherited with:</p> <pre><code>GetFields(BindingFlags.Public | BindingFlags.Instance) </code></pre> http://stackoverflow.com/questions/226262/clean-up-file-names-in-visual-studios-tabbed-document-interface/237195#237195 0 Answer by Jonathan Webb for Clean up file names in Visual Studio's tabbed document interface? Jonathan Webb 2008-10-25T23:28:44Z 2008-10-25T23:28:44Z <p>If you click on the <strong>Window | Windows...</strong> menuitem, what do the Name and Path fields look like for your open documents?</p> <p>On my install, the Name fields are just the filenames, exactly what appears in the tabs.</p> <p>Do the full paths appear in the window titles if you set the Window layout to "Multiple documents"?</p> http://stackoverflow.com/questions/212599/microsoft-access-query-seen-as-a-function-or-view-by-visual-studio-2005 1 Microsoft Access query seen as a Function or View by Visual Studio 2005 Jonathan Webb 2008-10-17T15:15:15Z 2008-10-18T13:58:44Z <p>I have a <strong>Microsoft Access</strong> database query that I'm trying to import into a <strong>Visual Studio 2005</strong> dataset.</p> <p>When the query is formed using an <strong>NZ()</strong> function like this:</p> <pre><code>SELECT NZ(tblComponentSpecs.nPurchaseCostQuantity, 0) AS Quantity FROM tblComponentSpecs; </code></pre> <p>it appears under the <strong>Functions</strong> list in the Data Connection.</p> <p>However, when the query is formed using an <strong>IIF()</strong> function like this:</p> <pre><code>SELECT IIF(tblComponentSpecs.nPurchaseCostQuantity Is Null, 0, nPurchaseCostQuantity) AS Quantity FROM tblComponentSpecs; </code></pre> <p>it appears under the <strong>Views</strong> list.</p> <p>Can anyone please explain why?</p> http://stackoverflow.com/questions/214971/how-to-manage-noise-in-teams-room/214996#214996 1 Answer by Jonathan Webb for How to manage noise in teams room? Jonathan Webb 2008-10-18T12:51:15Z 2008-10-18T12:51:15Z <p>A good pair of <strong>closed-back</strong> or <strong>canal</strong> headphones are probably the way to go. You can listen to what you like without distraction at volume levels that won't damage your hearing and also without annoying anyone around you.</p> <p><a href="http://www.headphonereviews.org/" rel="nofollow">HeadphoneReviews.org</a> have a good <a href="http://www.headphonereviews.org/wizard.php" rel="nofollow">selection wizard</a> and lots of reviews.</p> <p>Maybe headphones should be added to the <a href="http://www.codinghorror.com/blog/archives/000666.html" rel="nofollow">Programmer's Bill Of Rights?</a></p> http://stackoverflow.com/questions/140161/what-triggers-constraintexception-when-loading-dataset/191163#191163 0 Answer by Jonathan Webb for What triggers ConstraintException when loading DataSet? Jonathan Webb 2008-10-10T13:05:14Z 2008-10-10T13:05:14Z <p>I added some code that I've found to be useful in debugging ConstraintException occurrences <a href="http://stackoverflow.com/questions/37936/handling-xsd-dataset-constraintexceptions#37951">here</a></p> <p>Hope this helps.</p> http://stackoverflow.com/questions/97228/vs-2008-post-build-step-funny-business/167155#167155 1 Answer by Jonathan Webb for VS 2008 Post Build Step funny business Jonathan Webb 2008-10-03T14:31:46Z 2008-10-03T14:31:46Z <p>Do your script or batch files use any path references internally?</p> <p>I've found that batch files will not work correctly if path references are not fully qualified. <br /> <br /></p> <p>Example: a batch file called DoStuff.bat uses the echo command to append a text file.</p> <p>This does <strong>not</strong> work inside the .bat file:</p> <pre><code>echo "test" &gt;&gt;"test.txt" </code></pre> <p>This <strong>does work</strong> inside the .bat file:</p> <pre><code>echo "test" &gt;&gt;"C:\Temp\CompileTest\test.txt" </code></pre> <p>The Visual Studio <strong>Post-build event command line</strong> is this:</p> <pre><code>call "C:\Temp\CompileTest\DoStuff.bat" </code></pre> http://stackoverflow.com/questions/162485/how-much-time-does-it-take-to-build-a-fps-video-game/162527#162527 8 Answer by Jonathan Webb for How much time does it take to build a FPS video game? Jonathan Webb 2008-10-02T14:18:25Z 2008-10-02T14:18:25Z <p>Or forever in Duke Nukem's case..</p> http://stackoverflow.com/questions/157933/whats-the-best-way-of-implementing-a-thread-safe-dictionary-in-net/158012#158012 2 Answer by Jonathan Webb for What's the best way of implementing a thread-safe Dictionary in .NET? Jonathan Webb 2008-10-01T14:51:53Z 2008-10-01T14:51:53Z <p>You shouldn't publish your private lock object through a property. The lock object should exist privately for the sole purpose of acting as a rendezvous point.</p> <p>If performance proves to be poor using the standard lock then Wintellect's <a href="http://www.wintellect.com/PowerThreading.aspx" rel="nofollow">Power Threading</a> collection of locks can be very useful.</p> http://stackoverflow.com/questions/57179/oracle-from-net-with-a-64-bit-client/157497#157497 0 Answer by Jonathan Webb for Oracle from .Net with a 64 bit client Jonathan Webb 2008-10-01T13:09:29Z 2008-10-01T13:09:29Z <p>I've been trying for some time to get the 64-bit edition of Windows Server 2003 to connect to an Oracle 8i instance. It doesn't seem to be possible other than doing it through a 32-bit VM.</p> <p>Forced upgrading can really suck!</p> http://stackoverflow.com/questions/152302/what-happened-to-nunit/152316#152316 9 Answer by Jonathan Webb for What happened to NUnit? Jonathan Webb 2008-09-30T09:04:09Z 2008-09-30T09:04:09Z <p>The NUnit 2.5 Alpha 4 Release was released on September 14, 2008.</p> <p>Do you consider 16 days as not being maintained?</p> http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133826#133826 28 Answer by Jonathan Webb for Best programming novel to take on holiday Jonathan Webb 2008-09-25T14:57:25Z 2008-09-25T14:57:25Z <p><strong><a href="http://books.google.com/books?id=Qrz5A0KlidcC&amp;dq=dirk+gently&amp;ei=aKTbSNuxN4zAzATgsKntCA" rel="nofollow">Dirk Gently's Holistic Detective Agency</a></strong> by Douglas Adams.</p> <p>One of the main characters is a programmer and it's a very funny novel. I love this book!</p> http://stackoverflow.com/questions/109462/how-to-justify-a-workstation-upgrade/109503#109503 3 Answer by Jonathan Webb for How to justify a workstation upgrade Jonathan Webb 2008-09-20T21:36:41Z 2008-09-20T21:36:41Z <p>Is there a way that you can get an IDE (like Visual Studio) to automatically track the amount of time that builds take?</p> <p>A detailed metric showing the accumulated time spent waiting for compilation could be a compelling argument.</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/104540#104540 5 Answer by Jonathan Webb for What was your first home computer? Jonathan Webb 2008-09-19T18:57:35Z 2008-09-19T18:57:35Z <p>I don't see it here, but a school friend had an old <a href="http://en.wikipedia.org/wiki/Oric#Oric-1" rel="nofollow">Oric-1</a>:</p> <p><img src="http://www.heydon.org/kevan/collection/pictures/oric-1-large.jpg" alt="alt text" title="Oric Home Computer&quot;" /></p> <p>Did anyone else have one?</p> http://stackoverflow.com/questions/47094/who-has-been-the-most-influential-person-in-your-software-career-and-how 2 Who has been the most influential person in your software career and how? Jonathan Webb 2008-09-05T23:41:07Z 2008-09-17T23:52:19Z <p>For me, it's my uncle who let me use a Commodore Pet and then a Sinclair Spectrum from the college that he worked at. This experience sparked a fascination with computers that lasts to this day.</p> <p>So aside from yourself, who has had the biggest impact on your software career and how?</p> <p>EDIT: thanks for the answers, there's some great advice for helping to influence others. @rp's comment about seeking out people smarter than you is spot on!</p> http://stackoverflow.com/questions/3553/one-piece-of-advice/88673#88673 3 Answer by Jonathan Webb for One piece of advice Jonathan Webb 2008-09-17T23:27:13Z 2008-09-17T23:27:13Z <p>Practise your <strong>communication skills</strong> as much as possible, especially with non-technical people. They're most likely to be your customers.</p> http://stackoverflow.com/questions/88010/what-is-the-best-way-to-learn-dvorak/88469#88469 1 Answer by Jonathan Webb for What is the best way to learn Dvorak? Jonathan Webb 2008-09-17T22:48:37Z 2008-09-17T22:48:37Z <p>How about an OLED keyboard like the <a href="http://www.artlebedev.com/everything/optimus/" rel="nofollow">Optimus Maximus</a>?</p> <p>Insanely expensive at the minute but the cost will come down and keyboards like this will be great for alternative &amp; custom keyboard layouts.</p> http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/88405#88405 13 Answer by Jonathan Webb for What should be included in a programmer's code of ethics? Jonathan Webb 2008-09-17T22:38:17Z 2008-09-17T22:38:17Z <p>Pay for the commercial software that you use.</p> <p>It's only fair that other developers are rewarded for their work if you expect to be rewarded in turn.</p> http://stackoverflow.com/questions/1076847/displaying-a-large-amount-of-data-c/1076856#1076856 Comment by Jonathan Webb on Displaying a Large Amount of Data C# Jonathan Webb 2009-07-02T22:33:24Z 2009-07-02T22:33:24Z Brian Noyes' book &quot;Data Binding with Windows Forms 2.0&quot; has a good example of using Virtual Mode in a DataGridView where he renders a million items effortlessly. [p233] http://stackoverflow.com/questions/909113/dial-an-ivr-and-send-a-dtmf-string-in-windows-mobile-6/912521#912521 Comment by Jonathan Webb on Dial an IVR and send a DTMF string in windows mobile 6 Jonathan Webb 2009-06-13T01:03:34Z 2009-06-13T01:03:34Z IVR stands for Interactive Voice Response. IVRs provide the phone menus that you navigate by key presses or voice commands. http://stackoverflow.com/questions/244268/free-coderush-express-worth-the-time/699413#699413 Comment by Jonathan Webb on Free CodeRush Express: worth the time? Jonathan Webb 2009-04-28T14:47:34Z 2009-04-28T14:47:34Z Cool. Is this the same for Vista x64 too? http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/575558#575558 Comment by Jonathan Webb on Why is C# suddenly so popular? Jonathan Webb 2009-02-23T09:47:48Z 2009-02-23T09:47:48Z @Hosam Aly: any free software that allows you to get stuff done is good value :-) http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/575558#575558 Comment by Jonathan Webb on Why is C# suddenly so popular? Jonathan Webb 2009-02-22T23:07:20Z 2009-02-22T23:07:20Z +1 on Tortoise. VS Express is amazing for the price. http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular Comment by Jonathan Webb on Why is C# suddenly so popular? Jonathan Webb 2009-02-22T23:05:31Z 2009-02-22T23:05:31Z Maybe the inclusion of a 'subjective' tag should automatically trigger community wiki status? http://stackoverflow.com/questions/58640/great-programming-quotes/58666#58666 Comment by Jonathan Webb on Great programming quotes Jonathan Webb 2009-02-18T22:23:12Z 2009-02-18T22:23:12Z I think it refers back to the days when writing bad code could seriously wreck computer equipment, so programmers who had screwdrivers was a good sign that they needed watching. I've certainly known some great programmers who should be kept well away from tinkering with hardware at all costs! http://stackoverflow.com/questions/529969/relating-mismatched-column-in-an-xsd Comment by Jonathan Webb on Relating mismatched column in an xsd? Jonathan Webb 2009-02-13T21:58:13Z 2009-02-13T21:58:13Z You said in your question that you're creating an XSD dataset. Try altering the columns in the <i>XSD TableAdapters</i> to create the relation. http://stackoverflow.com/questions/419714/how-to-call-nunit-from-visual-studio-in-a-batch-file/445828#445828 Comment by Jonathan Webb on How to call Nunit from Visual Studio in a batch file Jonathan Webb 2009-02-12T20:27:36Z 2009-02-12T20:27:36Z That's a really good tutorial! Thanks for posting it. http://stackoverflow.com/questions/525583/a-problem-with-gui-using-c/525617#525617 Comment by Jonathan Webb on a problem with GUI using C# Jonathan Webb 2009-02-10T15:29:52Z 2009-02-10T15:29:52Z Do you need to write a button from scratch? It isn't too much work to inherit from the system Button class to customise the render behaviour. I wish it was easier for a disabled control to still display a tooltip to explain why it's disabled. http://stackoverflow.com/questions/37936/handling-xsd-dataset-constraintexceptions/497756#497756 Comment by Jonathan Webb on Handling XSD Dataset ConstraintExceptions Jonathan Webb 2009-02-04T23:26:11Z 2009-02-04T23:26:11Z I can't seem to reproduce what you've reported. What browser are you using? I was able to select &amp; copy the code in Firefox, Chrome &amp; Opera then paste it into Visual Studio 2008, Notepad++, Notepad &amp; WordPad. http://stackoverflow.com/questions/261580/overflow-when-calculating-a-const-in-vba/261615#261615 Comment by Jonathan Webb on Overflow when calculating a const in VBA Jonathan Webb 2008-11-04T11:54:21Z 2008-11-04T11:54:21Z Thanks. I've never had to use that before today. You live and learn.. http://stackoverflow.com/questions/235533/asp-net-container-specific-master-pages-for-safari-or-chrome/242820#242820 Comment by Jonathan Webb on ASP.NET Container-Specific Master Pages for Safari or Chrome Jonathan Webb 2008-10-29T15:47:12Z 2008-10-29T15:47:12Z Excellent! That's exactly what I was looking for. Thanks, J http://stackoverflow.com/questions/237275/how-can-i-find-all-the-public-fields-of-an-object-in-c Comment by Jonathan Webb on How can I find all the public fields of an object in C#? Jonathan Webb 2008-10-26T01:21:52Z 2008-10-26T01:21:52Z Your code will print out this: System.Reflection.FieldInfo[] http://stackoverflow.com/questions/237275/how-can-i-find-all-the-public-fields-of-an-object-in-c/237292#237292 Comment by Jonathan Webb on How can I find all the public fields of an object in C#? Jonathan Webb 2008-10-26T01:16:40Z 2008-10-26T01:16:40Z @nyxtom: you got my vote because it will work on 2.0 and 3.5