User Chris Ballance - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:27:46Zhttp://stackoverflow.com/feeds/user/1551http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845177/cannot-write-to-xml-file-in-another-computer-from-my-program/1845185#18451851Answer by Chris Ballance for Cannot write to XML file in another computer from my program.Chris Ballance2009-12-04T06:14:12Z2009-12-04T06:14:12Z<p>Most likely this means another program has this file locked. Try saving in another location and make sure you're properly disposing objects used to write to the file when you're done writing. Also double-check you have proper permissions to write this folder (try creating a basic text file there)</p>
<p>Keep in mind that your program may be running with different permissions than what you are logged in with.</p>
http://stackoverflow.com/questions/1701543/clipboard-access-using-javascript-sans-flash1Clipboard access using Javascript - sans Flash?Chris Ballance2009-11-09T14:57:38Z2009-12-01T11:52:48Z
<p>Is there a reliable way to access the client machine's clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use Flash?</p>
<p>My primary target is IE8, but would like to support FF and Chrome also.</p>
<p>I have seen the technique to do this using Flash, but am looking for a pure js route:<br />
<a href="http://stackoverflow.com/questions/400212/how-to-copy-to-clipboard-in-javascript">Clipboard access using Flash</a></p>
http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers80Why is good UI design so hard for some Developers?Chris Ballance2009-02-05T00:54:16Z2009-11-26T07:12:19Z
<p>Some of us just have a hard time with the softer aspects of UI design (<em>myself especially</em>). Are "back-end coders" doomed to only design business logic and data layers? Is there something we can do to <strong>retrain our brain</strong> to be more effective at designing pleasing and useful presentation layers?</p>
<p>Colleagues have recommended a few books me including <em>The Design of Sites</em>, <em>Don't make me think</em> and <em>Why Software sucks</em> , but I am wondering what others have done to remove their deficiencies in this area?</p>
http://stackoverflow.com/questions/1791944/javascript-file-dependencies-selective-load-resource-files-prevent-duplicates0Javascript file dependencies - Selective load resource files & prevent duplicatesChris Ballance2009-11-24T18:20:17Z2009-11-24T19:51:23Z
<p>This might be more of a philosophical debate, but here is what I have:</p>
<ul>
<li>Two controls which share a Javascript resource library to call a webservice. </li>
<li>They are ususally used in conjunction with each other, but not always.</li>
<li>The javacsript file they both reference is not easily separated.</li>
<li>The javascript file should not be added to every page in the application.</li>
</ul>
<p>Ideally I would divide the webservice between the controls and have each call a js resource file targeted just to the functionally they need.</p>
<p>I'm wondering if there is an obvious better way that I'm missing...</p>
<p>In its simplest form I have:</p>
<pre><code><html>
<head>
</head>
<div>
<h1>Control1</h1>
<script type="text/javascript" src="/Webservice.asmx/js"></script>
</div>
<div>
<h1>Other stuff</h1>
</div>
<div>
<h1>Control2</h1>
<script type="text/javascript" src="/Webservice.asmx/js"></script>
</div>
</body>
</html>
</code></pre>
<p><strong>Edit</strong><br />
I have jQuery available to me if this provides a helpful method.</p>
<p>Using ASP.NET</p>
http://stackoverflow.com/questions/1791944/javascript-file-dependencies-selective-load-resource-files-prevent-duplicates/1792467#17924670Answer by Chris Ballance for Javascript file dependencies - Selective load resource files & prevent duplicatesChris Ballance2009-11-24T19:45:23Z2009-11-24T19:45:23Z<p>Solved my issue with the following JS & jQuery code</p>
<pre><code>if (thisResourceLoaded === undefined)
{
$.getScript('/Webservice.asmx/js');
var thisResourceLoaded = true;
}
</code></pre>
http://stackoverflow.com/questions/1785209/regex-to-match-part-of-a-string/1785215#17852151Answer by Chris Ballance for Regex to match part of a stringChris Ballance2009-11-23T18:56:31Z2009-11-23T18:56:31Z<p>Any reason <code>/en/</code> would not work?</p>
http://stackoverflow.com/questions/1785078/datagridview-sort-based-on-value-of-another-row/1785117#17851170Answer by Chris Ballance for DataGridView sort based on value of another rowChris Ballance2009-11-23T18:42:43Z2009-11-23T18:42:43Z<p>Set <code>SortExpression</code> on the column to any valid column name. It does not have to be itself</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.sortexpression.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.sortexpression.aspx</a></p>
http://stackoverflow.com/questions/1784593/affordable-programmable-device-with-gprs-and-simple-sensors/1784610#17846104Answer by Chris Ballance for Affordable, programmable device with gprs and simple sensors?Chris Ballance2009-11-23T17:16:11Z2009-11-23T17:16:11Z<p>Have you looked at <a href="http://www.arduino.cc/" rel="nofollow">Arduino</a>?</p>
http://stackoverflow.com/questions/1784581/forms-authentication-login-page-issue/1784597#17845971Answer by Chris Ballance for Forms authentication login page issueChris Ballance2009-11-23T17:13:26Z2009-11-23T17:13:26Z<p><a href="http://blogs.msdn.com/harsh/archive/2007/01/10/forms-based-authentication-in-moss.aspx" rel="nofollow">Here</a> is a great overview of Forms Base Authentication using Sharepoint 2007. Hope that helps.</p>
http://stackoverflow.com/questions/1783822/format-of-for-loops/1783845#17838456Answer by Chris Ballance for format of for loopsChris Ballance2009-11-23T15:27:20Z2009-11-23T15:27:20Z<p>If the increment rule changes slightly you immediately have an infinite loop. I much prefer the first end condition.</p>
http://stackoverflow.com/questions/1783657/get-notification-when-a-new-drive-is-connected-via-usb-or-other-means-c/1783681#17836812Answer by Chris Ballance for Get notification when a new drive is connected via USB or other means (C#)Chris Ballance2009-11-23T15:05:44Z2009-11-23T15:05:44Z<p>A <a href="http://www.developer.com/article.php/2173801" rel="nofollow">windows service</a> should do the trick</p>
<p>Try reworking the CodeProject <a href="http://www.codeproject.com/KB/system/DriveDetector.aspx" rel="nofollow">DriveDetector</a> as a service and you should have what you need</p>
http://stackoverflow.com/questions/1780016/caching-item-ids-in-a-memory-table-good-bad/1780045#17800451Answer by Chris Ballance for Caching item IDs in a memory table - good/bad?Chris Ballance2009-11-22T21:20:46Z2009-11-22T21:20:46Z<p>The potential performance boost depends on how often the same query is reused. </p>
<p>There will be an extra step to scan the MEMORY table to see if that query has been run recently. For unique queries with small datasets, this might actually decrease your performance and unnecessarily add complexity to your system.</p>
<p>As for putting your HTML into an output cache of some sort, I would recommend you do this regardless of any query caching you might do if your traffic is high enough to justify doing this.</p>
<p>Above all, only optimize when necessary. Adding complexity to a system unnecessarily doesn't add value and can make maintenance harder than it should be.</p>
http://stackoverflow.com/questions/1771124/how-do-you-make-a-good-web-site-design/1771163#17711639Answer by Chris Ballance for How do you make a good web site designChris Ballance2009-11-20T15:21:20Z2009-11-20T15:45:21Z<p><a href="http://960.gs/" rel="nofollow">960 grid</a> has a good set of templates to start with.</p>
<p>Take inspiration from other websites you like, noting their techniques. As <a href="http://stackoverflow.com/users/122139/smandoli">Smandoli</a> suggested organize what you like by the feature (navigation, CSS, colors, layout, etc) </p>
<p>Keep your markup clean and as simple as possible, but no simpler.</p>
http://stackoverflow.com/questions/1759352/how-do-i-mark-a-method-as-obsolete-deprecated-c1How do I mark a method as Obsolete/Deprecated? - C#Chris Ballance2009-11-18T21:53:38Z2009-11-18T23:16:08Z
<p>How do I mark a method as Obsolete/Deprecated using C# ?</p>
http://stackoverflow.com/questions/1759352/how-do-i-mark-a-method-as-obsolete-deprecated-c/1759357#175935726Answer by Chris Ballance for How do I mark a method as Obsolete/Deprecated? - C#Chris Ballance2009-11-18T21:54:15Z2009-11-18T22:57:33Z<p>The shortest way is:</p>
<pre><code> [Obsolete]
</code></pre>
<p>You can add an explanation:</p>
<pre><code> [Obsolete("Method1 is deprecated, please use Method2 instead.")]
</code></pre>
<p>You can also cause the compilation to fail if the method is called from somewhere in code like this:</p>
<pre><code> [Obsolete("Method1 is deprecated, please use Method2 instead.", true)]
</code></pre>
<p>(Thanks @rick)</p>
http://stackoverflow.com/questions/522856/what-are-good-resources-for-css-templates-or-templated-layout-sites33What are good resources for CSS templates or templated layout sites?Chris Ballance2009-02-07T01:06:48Z2009-11-18T02:20:36Z
<p>Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.</p>
http://stackoverflow.com/questions/1752206/is-there-a-net-port-of-drupal/1752230#17522303Answer by Chris Ballance for Is there a .NET port of Drupal?Chris Ballance2009-11-17T22:12:12Z2009-11-17T22:12:12Z<p>Have you looked into <a href="http://sourceforge.net/projects/drupal-net/" rel="nofollow">Drupal.net</a>? </p>
http://stackoverflow.com/questions/1744050/sql-syntax-question1SQL Syntax questionChris Ballance2009-11-16T18:43:24Z2009-11-16T19:57:09Z
<p>What does the following statement mean? Is it an equivalent for <code>TOP</code>?</p>
<pre><code>select +10 as ContentID
</code></pre>
http://stackoverflow.com/questions/1744051/why-do-so-many-javascript-scripts-append-random-numbers-to-things-collision/1744075#17440751Answer by Chris Ballance for Why do so many Javascript scripts append random numbers to things? Collision?Chris Ballance2009-11-16T18:47:33Z2009-11-16T18:47:33Z<p>This will ensure that the script is unique and will not cached as a static resource since the querystring changes each time.</p>
http://stackoverflow.com/questions/1737947/code-golf-permutations/1737969#1737969-2Answer by Chris Ballance for Code Golf: PermutationsChris Ballance2009-11-15T16:13:18Z2009-11-15T16:13:18Z<p><a href="http://msdn.microsoft.com/en-us/library/aa302371.aspx" rel="nofollow">Using Permutations in .NET for Improved Systems Security</a></p>
http://stackoverflow.com/questions/1724789/how-can-i-create-an-outlook-pst-file-using-net/1724813#17248130Answer by Chris Ballance for How can I create an Outlook PST file using .Net?Chris Ballance2009-11-12T19:36:50Z2009-11-12T19:36:50Z<p><a href="http://stackoverflow.com/questions/577904/can-i-read-an-outlook-2003-2007-pst-file-in-c">http://stackoverflow.com/questions/577904/can-i-read-an-outlook-2003-2007-pst-file-in-c</a></p>
http://stackoverflow.com/questions/588062/google-latitude-api3Google Latitude APIChris Ballance2009-02-25T21:51:08Z2009-11-12T08:54:18Z
<p>There is not currently an API offered by Google Latitude. </p>
<p>Does anyone know of plans for being offered in the future?</p>
<p>If it does, what social networking applications for this technology can you think of?</p>
http://stackoverflow.com/questions/86292/c-how-to-check-for-valid-xml-in-string-input-before-calling-loadxml2C# How to check for valid xml in string input before calling .LoadXml()Chris Ballance2008-09-17T18:46:35Z2009-11-12T05:41:07Z
<p>I would much prefer to do this without catching an exception in .LoadXml() and using this results as part of my logic. Any ideas for a solution that doesn't involve manually parsing the xml myself? I think VB has a return value of false for this function instead of throwing an XmlException. Xml input is provided from the user. Thanks much!</p>
<pre><code> if (!loaded)
{
this.m_xTableStructure = new XmlDocument();
try
{
this.m_xTableStructure.LoadXml(input);
loaded = true;
}
catch
{
loaded = false;
}
}
</code></pre>
http://stackoverflow.com/questions/1718399/net-databinding-confirmation-before-removing-items-from-the-list/1718414#17184141Answer by Chris Ballance for .NET DataBinding, Confirmation before removing items from the list Chris Ballance2009-11-11T22:10:39Z2009-11-11T22:10:39Z<p>attach to <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.onrowdeleting.aspx" rel="nofollow">OnRowDeleting()</a></p>
http://stackoverflow.com/questions/1718143/split-a-string-using-a-open-and-close-tag/1718374#17183741Answer by Chris Ballance for split a string using a open and close tag.Chris Ballance2009-11-11T22:03:11Z2009-11-11T22:06:26Z<pre><code>@"\G<&(?<code>.*?)&>"
</code></pre>
<p>The TemplateParser in the AspCodeRegex class in System.Web.RegularExpressions uses something similar to this<br />(answer via @rexm)</p>
http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1710325#17103251Answer by Chris Ballance for what happens to older software engineers?Chris Ballance2009-11-10T18:56:25Z2009-11-10T18:56:25Z<p>They <code>.Dispose()</code></p>
http://stackoverflow.com/questions/1704533/intercept-page-exit-event1Intercept page exit eventChris Ballance2009-11-09T22:56:53Z2009-11-10T00:02:01Z
<p>When editing a page within my system, a user might decide to navigate to another website and in doing so could lose all the edits they have not saved.</p>
<p>I would like to intercept any attempt to go to another page and prompt the user to be sure they want this to happen since they could potentially lose their current work.</p>
<p>Gmail does this in a very similar way. For example, compose a new email, start typing into the message body and enter a new location in the address bar (say twitter.com or something). It will prompt like so:
<img src="http://blog.chrisballance.com/content/binary/areyousure.png" alt="alt text"></p>
<p>Ideas how to replicate this? I'm targeting IE8, but would like to be compatible with FF & Chrome also.</p>
http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/1704617#17046172Answer by Chris Ballance for What is the WORST commit message you have ever authored?Chris Ballance2009-11-09T23:15:15Z2009-11-09T23:15:15Z<pre><code>That's just how I roll
</code></pre>
http://stackoverflow.com/questions/1703478/embed-google-yahoo-search-into-a-web-site-or-build-your-own/1703501#17035011Answer by Chris Ballance for Embed Google/ Yahoo search into a web site or build your ownChris Ballance2009-11-09T20:21:33Z2009-11-09T22:26:51Z<p>I have had success using <a href="http://www.opensearch.org/Home" rel="nofollow">OpenSearch</a> for my <a href="http://chrisballance.com" rel="nofollow">personal blog</a>.</p>
<p>While working at BigCorp we used dedicated search applicances in yellow boxes, but in your case (around 100 pages) it does not make sense to take such a route.</p>
http://stackoverflow.com/questions/1695131/why-is-garbage-collection-so-important/1695171#16951715Answer by Chris Ballance for Why Is Garbage Collection So Important?Chris Ballance2009-11-08T02:38:57Z2009-11-08T02:44:28Z<p>Garbage Collection is a part of many modern languages that attempts to abstract the disposal and reallocation of memory with less direction intervention by the developer.</p>
<p>When you hear talk of "safe" objects, this usually refers to something whose memory can be automatically reallocated by the Garbage Collector after an object falls out of scope, or is explicitly disposed.</p>
<p>While you can write the same program without a garbage collector to help manage memory usage, abstracting this away lets the developer think about more high level things and deliver value to the end user more quickly and efficiently without having to necessarily concentrate as much on lower level portions of the program.</p>
<p>In essence the developer can say</p>
<p><strong>Give me a new object</strong></p>
<p>..and some time later when the object is no longer being used (falls out of scope) the developer does not have to remember to say</p>
<p><strong>throw this object away</strong></p>
<p>Developers are lazy (a good virtue) and sometimes forget things. When working with GC properly, it's okay to forget to take out the trash, the GC won't let it pile up and start to smell.</p>
http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869538#1869538Comment by Chris Ballance on ValidateRequest not workingChris Ballance2009-12-08T20:50:27Z2009-12-08T20:50:27Z+1 for <sup>foohttp://stackoverflow.com/questions/240212/what-is-the-difference-between-new-delete-and-malloc-free/240308#240308Comment by Chris Ballance on What is the difference between new/delete and malloc/free?Chris Ballance2009-12-04T15:14:50Z2009-12-04T15:14:50Z+1 Most complete answer I've seen yet.http://stackoverflow.com/questions/1847496/setting-a-jscript-variable-to-contentplaceholder/1847542#1847542Comment by Chris Ballance on Setting a JScript variable to contentplaceholderChris Ballance2009-12-04T15:10:11Z2009-12-04T15:10:11Z+1 I often use something like var controlID = <%=ControlName.clientID%> to get the verbose id that ASP.NET generateshttp://stackoverflow.com/questions/1298848/how-to-login-in-linkedin-automatically-from-asp-net-application/1837576#1837576Comment by Chris Ballance on How to login in LinkedIn automatically from asp.net application?Chris Ballance2009-12-03T04:11:23Z2009-12-03T04:11:23Z+1 for recommending OAuthhttp://stackoverflow.com/questions/170483/out-of-memory-infinite-loop-asp-net-ajax-frameworkComment by Chris Ballance on Out of Memory - Infinite Loop - ASP.NET AJAX FrameworkChris Ballance2009-12-02T17:04:41Z2009-12-02T17:04:41ZI'm having the same problem. Only occurs in staging and production where there is more than one web server.http://stackoverflow.com/questions/1828960/converting-xdoc-or-xelement-into-string/1828965#1828965Comment by Chris Ballance on converting xdoc or xelement into string?Chris Ballance2009-12-01T21:40:33Z2009-12-01T21:40:33Z+1 It's so simple it might just work!http://stackoverflow.com/questions/1827750/cruisecontrol-net-api-through-cComment by Chris Ballance on CruiseControl.Net API through C#Chris Ballance2009-12-01T17:44:41Z2009-12-01T17:44:41ZHave you tried running Fiddler to see if perhaps there is a permissions error?http://stackoverflow.com/questions/1505629/sql-server-2008-find-table-with-most-rows/1505643#1505643Comment by Chris Ballance on SQL Server 2008 - find table with most rowsChris Ballance2009-11-26T13:09:49Z2009-11-26T13:09:49Z+1 @Steve Kass thanks for the due diligence regarding edge cases for the query I posted! http://stackoverflow.com/questions/1783657/get-notification-when-a-new-drive-is-connected-via-usb-or-other-means-c/1783681#1783681Comment by Chris Ballance on Get notification when a new drive is connected via USB or other means (C#)Chris Ballance2009-11-24T18:20:41Z2009-11-24T18:20:41ZGlad this helped!http://stackoverflow.com/questions/1785209/regex-to-match-part-of-a-string/1785225#1785225Comment by Chris Ballance on Regex to match part of a stringChris Ballance2009-11-23T22:08:06Z2009-11-23T22:08:06ZJust do a string match, Regex is overkill for this case.http://stackoverflow.com/questions/1785209/regex-to-match-part-of-a-string/1785238#1785238Comment by Chris Ballance on Regex to match part of a stringChris Ballance2009-11-23T22:06:37Z2009-11-23T22:06:37ZUsing a simple String.Contains("/en/") is less costly than using a Regex at all...http://stackoverflow.com/questions/1785209/regex-to-match-part-of-a-string/1785215#1785215Comment by Chris Ballance on Regex to match part of a stringChris Ballance2009-11-23T22:05:40Z2009-11-23T22:05:40ZThis is not a Regex, just a standard string match.http://stackoverflow.com/questions/1784219/cookie-based-sso/1784251#1784251Comment by Chris Ballance on Cookie based SSOChris Ballance2009-11-23T16:26:28Z2009-11-23T16:26:28Z+1 Yep, cross-domain cookies are not allowed, and generally a bad idea anyway.http://stackoverflow.com/questions/1784181/mac-look-n-feel-on-other-platformsComment by Chris Ballance on mac look n feel on other platforms?Chris Ballance2009-11-23T16:15:52Z2009-11-23T16:15:52ZWindows 7 ......http://stackoverflow.com/questions/1783822/format-of-for-loops/1784000#1784000Comment by Chris Ballance on format of for loopsChris Ballance2009-11-23T15:58:04Z2009-11-23T15:58:04Z+1 for due diligence