User David in Dakota - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:58:01Z http://stackoverflow.com/feeds/user/64 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833631/what-software-on-a-silverlight-developers-laptop/1834573#1834573 0 Answer by David in Dakota for what software on a silverlight developer's laptop David in Dakota 2009-12-02T17:39:32Z 2009-12-02T17:39:32Z <p>+1 for Kaxaml - I use it quite frequently to get color values, test the widths of things, and other XAML miscellany. It's a lot more light weight than Blend and I am more frequently than not editing XAML in the code editor of Visual Studio.</p> <p>I don't know if this is the right forum to prove this hypothesis but I think most Silverlight developers edit their XAML in Visual Studio, not Blend which is why having a light weight alternative is handy <strong>some</strong> of the time. </p> <p>You will need Blend, however, it has no equal for editing control templates / styles.</p> http://stackoverflow.com/questions/1822687/c-3-0-tuple-equivalents-for-poor-men 1 C# 3.0 Tuple Equivalents (for poor men) David in Dakota 2009-11-30T21:59:44Z 2009-12-01T15:12:04Z <p>I find myself occasionally in C# 3.0 looking for ways to simulate the notion of a tuple. Over time I've had various "poor man's" implementations, here are a few of them:</p> <p><strong>Basic Object Array</strong>:</p> <pre><code>object[] poorTuple = new object[]{foo,bar,baz}; // basic object array </code></pre> <p><strong>More Strongly Typed</strong>, HoHoHo...</p> <pre><code>KeyValuePair&lt;TypeA, KeyValuePair&lt;TypeB, TypeC&gt;&gt; poorTuple; </code></pre> <p><strong>Implementing a class</strong> that can use type inference (lifted from <a href="http://www.manning.com/petricek/" rel="nofollow">Functional Programming for the Real World</a>)</p> <pre><code>public static class Tuple{ public static Tuple&lt;T1, T2&gt; Create&lt;T1 foo, T2 bar&gt;{ return new Tuple&lt;T1, T2&gt;(foo, bar); } } // later: var data = Tuple.Create("foo", 42); </code></pre> <p>Questions: </p> <ol> <li><p>Any other ways to have a poor man's tuple in C# 3.0 (or language of choice that lacks the data structure). </p></li> <li><p>What is the <em>best</em> way to get a tuple in C# 3.0 - if anyone has a library recommendation it is welcome.</p></li> <li><p>At what point (yes, generalize for me) does it make sense to create a specific type rather than something like a list or tuple? (looking for rules of thumb) </p></li> </ol> http://stackoverflow.com/questions/1811076/how-to-look-up-values-from-a-table-in-access/1811086#1811086 0 Answer by David in Dakota for How to look up values from a table in Access David in Dakota 2009-11-28T00:12:44Z 2009-11-28T00:17:51Z <p>You can create queries in Access if the user you're targeting with the searchability has Access themselves.</p> <p>From the main Access UI (assuming Access 2007), go to the Create tab and then select the "Query Wizard." <a href="http://www.ehow.com/how%5F2125020%5Fuse-access-2007-query-wizard.html" rel="nofollow">Here</a> is an article on the subject.</p> <p>Otherwise you can create a program and connect to the MDB/ACCDB file running the query programmatically.</p> http://stackoverflow.com/questions/1776739/how-to-expose-internal-system-array/1776757#1776757 3 Answer by David in Dakota for How to expose internal System.Array David in Dakota 2009-11-21T20:56:01Z 2009-11-21T21:03:59Z <p>Answer to 3: Your performance is definitely at issue; you'd be creating a new instance each time it was accessed. Any time a person wrote a for... loop you'd get a new instance for each iteration. </p> <p>Why not publicly just expose your collections? I might do the same thing by simply using List: </p> <pre><code>class Data&lt;T,U&gt; { public List&lt;T&gt; X = new List&lt;T&gt;(); public List&lt;U&gt; Y = new List&lt;U&gt;(); } </code></pre> <p>Writing code would be quite simple: </p> <pre><code> Data&lt;int, string&gt; theData = new Data&lt;int, string&gt;(); // add theData.X.Add(37); theData.Y.Add("foo"); // access theData.X[0] = 42; theData.Y[0] = "bar"; // as an array int[] x = theData.X.ToArray(); </code></pre> <p>If performance really creeps you out, just use arrays instead of List&lt;T&gt;. </p> http://stackoverflow.com/questions/1772197/using-structs-with-wcf-services 1 Using Structs with WCF Services David in Dakota 2009-11-20T17:51:44Z 2009-11-20T19:41:02Z <p><strong>Is there any official recommendation on using structs as return types with WCF services?</strong> </p> <p>I'm currently interacting with a service I did not write and find myself inspired to ask to see if my annoyance is warranted.</p> <p>I've in past always used classes - probably in part because that's what samples always show but as I think about it now, for other "intuitive" reasons: </p> <ul> <li><p>I started <em>contract</em> style by defining a separate project with interfaces representing the types that would be passed back and forth by the service. </p></li> <li><p>I use LINQ a lot, so tests for nullability are implicit with reference types whereas with structs and other value types I'd always need to mark nullable. </p></li> </ul> <p>Those are some that come to me right away although I'll admit it's more intuitive than a bulleted list in my mind. I thought to ask the question because I'm dealing with a service that returns structs and having to write when dealing with return values: </p> <pre><code>var foo = Bar.Value.MyField; </code></pre> <p>instead of </p> <pre><code>var foo = Bar.Value; </code></pre> http://stackoverflow.com/questions/1772205/is-it-good-to-use-wait-cursor-in-websites/1772235#1772235 4 Answer by David in Dakota for is it good to use Wait cursor in websites? David in Dakota 2009-11-20T17:55:33Z 2009-11-20T17:55:33Z <p>The wait cursor may be perceived as related to the browser rather than the website specifically - I would recommend an animation specific to the web page.</p> http://stackoverflow.com/questions/1770750/vb-net-windows-service-with-file-watcher/1770768#1770768 1 Answer by David in Dakota for VB.net Windows Service with File Watcher David in Dakota 2009-11-20T14:26:56Z 2009-11-20T14:26:56Z <p>I assume by "service" you mean a Windows Service (caps) as opposed to a "service" (scheduled executable). Of course this depends on the code in the service but ostensibly as long as the service is running, the filewatcher should monitor the folder. </p> http://stackoverflow.com/questions/1758505/remove-duplicates-from-file-vs-cobol 0 Remove Duplicates From File (vs COBOL) David in Dakota 2009-11-18T19:37:28Z 2009-11-19T00:30:23Z <p><a href="http://stackoverflow.com/questions/1758229/remove-duplicates-from-file">This Cobol question</a> really piqued my interest because of how much effort seemed to be involved in what seems like it would be a simple task. </p> <p>Some sloppy Python to remove file duplicates could be simply: </p> <pre><code>print set(open('testfile.txt').read().split('\n')) </code></pre> <p>How does removing duplicates in the same file structure as above in your language of choice compare to COBOL? </p> http://stackoverflow.com/questions/1759029/foreach-in-sql/1759064#1759064 2 Answer by David in Dakota for Foreach in SQL? David in Dakota 2009-11-18T21:02:59Z 2009-11-18T21:02:59Z <p>If you can use regular SQL, could you not use an INSERT/SELECT statement? </p> <pre><code>INSERT INTO term_nodes(fld, fld2, fld3) SELECT tid, nodeid, 4 FROM term_data WHERE ... ? </code></pre> http://stackoverflow.com/questions/1758042/c-function-chaining/1758611#1758611 0 Answer by David in Dakota for C# Function Chaining David in Dakota 2009-11-18T19:53:03Z 2009-11-18T19:53:03Z <p>Although others have already mentioned that AddRange does not return a value, based on the samples given for alternatives it should also be remembered that the constructor of List will take an IEnumerable of T as well in addition to the code previously mentioned that is .NET 3.5+</p> <p>For example: </p> <pre><code>List&lt;int&gt; intrs = new List&lt;int&gt;(new int[]{2,3,5,7}); </code></pre> http://stackoverflow.com/questions/1755399/physical-path-in-silverlight/1755417#1755417 2 Answer by David in Dakota for physical path in silverlight David in Dakota 2009-11-18T11:35:46Z 2009-11-18T11:35:46Z <p>Silverlight doesn't allow direct access to the file system. However you can take advantage of Isolated Storage to read and write files on the client side. <a href="http://silverlight.net/learn/quickstarts/isolatedstorage/#example" rel="nofollow">Here</a> is a tutorial for that.</p> <p>If you need access to a folder in the web application that is hosting your Silverlight app, use your service. Once you are in your OperationContract method, or even if you leverage the WebClient to make an AJAX style request, you can access the file system <em>on</em> <em>the</em> <em>server</em> but remember that is a different machine than your Silverilght client with the exception of when you do development (or browse your app on the server).</p> http://stackoverflow.com/questions/1753184/compare-strings-in-c/1753192#1753192 6 Answer by David in Dakota for Compare Strings in C# David in Dakota 2009-11-18T02:14:50Z 2009-11-18T02:14:50Z <p>I don't mean to be snarky but what is the purpose of: </p> <pre><code> while (x &gt; 0 &amp;&amp; x &lt; 100000001) { x++; } </code></pre> <p>If you want a pause, why not just Thread.Sleep(TimeSpan.FromSeconds(1))? Your code sample doesn't make too much sense. </p> http://stackoverflow.com/questions/1752188/can-scrum-work-with-mediocre-developers/1752204#1752204 12 Answer by David in Dakota for Can Scrum work with mediocre developers? David in Dakota 2009-11-17T22:09:11Z 2009-11-17T22:35:35Z <p>The <a href="http://agilemanifesto.org/" rel="nofollow">Agile Manifesto</a> disclaimer is telling on your question. In the first point: </p> <p>'Individuals and interactions over processes and tools '</p> <p>I think if the individuals have problems then methodology is futile.</p> http://stackoverflow.com/questions/1751428/programming-language-to-automatically-navigate-website/1751435#1751435 2 Answer by David in Dakota for Programming language to automatically navigate website? David in Dakota 2009-11-17T20:11:53Z 2009-11-17T20:27:46Z <p>You can use <a href="http://search.cpan.org/dist/libwww-perl" rel="nofollow">LWP::Simple</a> in Perl.</p> <p>You can find a lot of information on the web but <a href="http://www.perlmonks.org/?node%5Fid=167861" rel="nofollow">Getting more out of LWP::Simple</a> is a tutorial on Perlmonks.</p> http://stackoverflow.com/questions/1747680/correlate-the-completed-event-to-the-original-webclient/1749475#1749475 0 Answer by David in Dakota for Correlate the completed event to the original WebClient? David in Dakota 2009-11-17T15:04:40Z 2009-11-17T15:04:40Z <p>It's a trade off of performance, but you could use different instances of the WebClient class in which case you'd correlate the response back to the original instance of the WebClient that fired the request. </p> http://stackoverflow.com/questions/1743355/how-can-i-make-different-html-links-different-colors/1743380#1743380 1 Answer by David in Dakota for how can i make different html links different colors . . David in Dakota 2009-11-16T16:47:05Z 2009-11-16T16:47:05Z <p>use a css style for the anchor inline:</p> <pre><code>&lt;a href="foo" style="color:orange".... </code></pre> http://stackoverflow.com/questions/1738980/how-do-i-disable-the-c-message-box-beep/1739436#1739436 1 Answer by David in Dakota for How do I disable the c# message box beep? David in Dakota 2009-11-16T00:21:53Z 2009-11-16T00:21:53Z <p>Depending on how much you're leveraging the MessageBox (icons, etc) you can always make a custom dialog. Especially if it's a simple message you want to display, this would not be difficult or time consuming. </p> http://stackoverflow.com/questions/1736667/xml-traversing-copy-elements-and-nodes-using-linq-to-xml/1736719#1736719 0 Answer by David in Dakota for XML Traversing, Copy Elements and Nodes using LINQ to XML David in Dakota 2009-11-15T05:45:02Z 2009-11-15T05:45:02Z <p>I wouldn't say you're doing something "silly" but there are ways to clone a node and modify it in a more streamlined way with LINQ. Depending on what your goals are, you can use a function to modify the node and some handy LINQ expressions to clone it. Here is an example based on what you've done above: </p> <pre><code> XDocument doc = XDocument.Parse(@"&lt;?xml version='1.0' encoding='utf-8'?&gt; &lt;Parents&gt; &lt;Parent id='A' description='A is a parent'&gt; &lt;Children&gt; &lt;ChildName name = 'Son1ofA' /&gt; &lt;ChildName name = 'Son2ofA' /&gt; &lt;/Children&gt; &lt;/Parent&gt; &lt;/Parents&gt; "); Func&lt;XElement, XElement&gt; trans = (x) =&gt; { char c = Convert.ToChar(x.Attribute("id").Value); int inc = (int)c; x.Attribute("id").Value = Convert.ToChar(++inc).ToString(); return x; }; string elementTarget = "Parent"; // assume you read this from some input doc.Root.ReplaceWith(new XElement(doc.Root.Name, doc.Descendants(elementTarget).Select(p =&gt; p), doc.Descendants(elementTarget).Select(p =&gt; trans(p)))); Console.Write(doc); Console.ReadLine(); </code></pre> <p>You can see the logic for transforming in the "trans" anonymous function and the ability to arbitrarily select a node using the <strong>Descendants</strong> enumeration in LINQ. This solution is somewhat brittle but perhaps it can give you some ideas.</p> http://stackoverflow.com/questions/1736494/can-you-test-for-a-range-of-values-in-an-if-statement/1736515#1736515 5 Answer by David in Dakota for can you test for a range of values in an IF statement David in Dakota 2009-11-15T03:54:35Z 2009-11-15T03:54:35Z <p>Just to add a different kind of thinking, when I have range tests I like to use the <strong>Contains</strong> method of <strong>List&lt;T&gt;</strong>. In your case it may seem contrived but it would look something like: </p> <pre><code> List&lt;int&gt; options = new List&lt;int&gt;(Enumerable.Range(0, 33)); options.Add(99); if(options.Contains(userChoice)){ // something interesting } </code></pre> <p>If you were operating in the simple range, it would look much cleaner: </p> <pre><code> if(Enumerable.Range(0, 33).Contains(userChoice)){ // something interesting } </code></pre> <p>What's nice about this is that is works superbly well with testing a range of strings and other types without having to write || over and over again.</p> http://stackoverflow.com/questions/1736444/using-the-controls-of-one-form-into-another/1736471#1736471 3 Answer by David in Dakota for Using The Controls Of One Form Into Another David in Dakota 2009-11-15T03:27:12Z 2009-11-15T03:39:29Z <p>Depending on how you launch the second form you can either assign a member object in Form2 that references Form1 or if you are using an MDI interface there is a forms collection from which you can retrieve a reference to your Form1.</p> <p>For example, you could have the following code in your Form2 class: </p> <pre><code>public partial class Form2 : Form { public Form1 LaunchOrigin { get; set; } // and so on </code></pre> <p>Now you can assign the LaunchOrigin member when you launch Form2. Here is an example: </p> <pre><code>Form2 newForm = new Form2(); newForm.LaunchOrigin = this; newForm.Show(); </code></pre> <p>You now have access to Form1 and all its members. Here is a simple example of that: </p> <pre><code> private void Form2_Load(object sender, EventArgs e) { this.Text = LaunchOrigin.Text; } </code></pre> <p>You must remember that controls are declared as private so you won't have direct access to them. You could write a property on Form1 that referenced that control but this is most often a bad idea. For the sake of completeness, however, here is some code that you could use to expose a button on Form1: </p> <pre><code>public partial class Form1 : Form { public Button theButton; public Form1() { InitializeComponent(); theButton = button1; // where button1 is what I dragged on } // and so on </code></pre> <p>Although what you're asking is relatively easy to accomplish, it puts you on the road to some <em>brittle</em> application structure. Think hard about what it is you're trying to expose between forms, perhaps it deserves to be a distinct type that you can bind to both forms so that once you change the underlying type, you change the representation on both.</p> http://stackoverflow.com/questions/1731001/silverlight-openfiledialog-doevents-equivalent 0 Silverlight OpenFileDialog DoEvents equivalent David in Dakota 2009-11-13T18:24:58Z 2009-11-13T18:46:14Z <p>I'm processing large files after they are selected by the user. My code looks like the following: </p> <pre><code>if (FileDialog.ShowDialog() == true) { // process really big file } </code></pre> <p>This freezes up the UI so I tried to display a loading message first before a user selected the file to give them a visual cue that something was happening: </p> <pre><code>loadingMessage.Visibility = Visibility.Visible; if (FileDialog.ShowDialog() == true) { // process really big file } </code></pre> <p>Unfortunately, this still completely freezes up the UI while the file is being processed. </p> <p>What I have found that works perfectly is if I fire a MessageBox right after the file selection. I think it does a "DoEvents" type call under the hood to get flush event/ui items in the runtime. </p> <pre><code>loadingMessage.Visibility = Visibility.Visible; if (FileDialog.ShowDialog() == true) { MessageBox.Show("Sync!"); // process really big file } </code></pre> <p>In cases like this the big file is still processed as slowly but the loading message is displayed and the screen UI gets synched up (I'm doing some other things in the real thing such as showing a wait cursor). </p> <p><strong>Question:</strong> </p> <p>Silverlight has no DoEvents functionality. Is there a call I can make besides MessageBox.Show to have the same effect of synchronizing the UI and preventing the OpenFileDialog from freezing up the UI?</p> http://stackoverflow.com/questions/1730630/regular-expression-with-groups-and-values-in-c/1730699#1730699 -1 Answer by David in Dakota for Regular Expression with Groups and Values in C# David in Dakota 2009-11-13T17:21:07Z 2009-11-13T17:21:07Z <p>I see problems with your regular expression, namely the unmatched [ character. The following works fine: </p> <pre><code>\|(?&lt;month&gt;\d{2})/(?&lt;day&gt;\d{2})/(?&lt;year&gt;\d{2})\| </code></pre> <p>That will group the month, day, and year results. You can then replace with the following string: </p> <pre><code>|$1/$2/20$3| </code></pre> http://stackoverflow.com/questions/1725994/document-library-in-net/1727304#1727304 0 Answer by David in Dakota for Document library in .NET David in Dakota 2009-11-13T05:30:39Z 2009-11-13T05:30:39Z <p>One answer to this question could be Microsoft Sharepoint but that's a ton of <strong>bloat</strong> that you may not need. However, this is Microsoft's "canonical" solution to the problem you describe above.</p> http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/1719320#1719320 0 Answer by David in Dakota for What software for your own personal use did you write? David in Dakota 2009-11-12T01:36:03Z 2009-11-12T01:36:03Z <p>I've written a few things over the years: a <a href="http://www.nregex.com" rel="nofollow">regular expression tester</a>, a <a href="http://www.t3rse.com/proper" rel="nofollow">property generator</a> for C#/VB.NET, a <a href="http://www.t3rse.com/pwd" rel="nofollow">password generator</a>, some photoblogging software, a web based sql server explorer tool, an <a href="http://www.t3rse.net/builder/" rel="nofollow">iTunes playlist utility</a>(did that way back, should still work though) and a time tracking tool.</p> <p>I've had a lot of fun and learned a lot writing my own tools. It gives me no shortage of pleasure to see other people using my stuff of thought.</p> http://stackoverflow.com/questions/33275/automated-pdf-creation-from-url 2 Automated PDF Creation from URL David in Dakota 2008-08-28T20:09:27Z 2009-11-10T17:23:27Z <p>Is there a PDF library that one can use to automate creating PDFs from URLs? The current approach I use is to "Print" a page and select a PDF plugin like PrimoPDF to generate the PDF document but I was wanting to automate that. </p> http://stackoverflow.com/questions/1603798/high-order-function-approach-for-exceptions-in-c 2 High Order Function Approach for Exceptions in C# David in Dakota 2009-10-21T21:33:39Z 2009-11-09T17:40:07Z <p>Hey everyone, I was thinking about passing method blocks around as arguments to helper classes that built in exception handling but it's one of those things that is intuitive and I'd like to submit it for criticism, insight, or advice.</p> <p>I would like to note up front that this is <strong>NOT</strong> how I do all of my exception handling, but there are cases where I find this structure more "readable." </p> <p>For example, I have a scenario where I'm showing a preview image but if that fails (this is a real scenario where I'm previewing images and certain GIF/BMP formats cannot be previewed) it's simply a scenario where I display an alternate image instead of preview. The try/catch code block that looks like this:</p> <pre><code> try { alternatePreviewImage.SetSource(fs); } catch (Exception ex) { requiresSpecialPreview = false; previewImage = new BitmapImage(new Uri("Images/NoPreviewAvailable.png", UriKind.Relative)); } </code></pre> <p>So I'll leverage a helper class that takes a method parameter to make it look like this: </p> <pre><code> if(!ErrorHelper.RunWithSuccessNotify(()=&gt; alternatePreviewImage.SetSource(fs))){ requiresSpecialPreview = false; previewImage = new BitmapImage(new Uri("Images/NoPreviewAvailable.png", UriKind.Relative)); } </code></pre> <p>The ErrorHelper.RunWithSuccessNotify is quite simple: </p> <pre><code>public static bool RunWithSuccessNotify(Action code) { bool success = true; try { code(); } catch (Exception ex) { success = false; } return success; } </code></pre> <p>Let me again underscore that it is useful for these low impact scenarios, as well as others where I may be able to suppress the exception: </p> <pre><code>public static void RunWithErrorSuppression(Action code) { try { code(); } catch (Exception ex) { // pass } } </code></pre> <p>The approach could be more detailed too, to allow for capturing the exception: </p> <pre><code> public static void ExecuteWithLogging(Action code, Action&lt;Exception&gt; handles) { try { code(); } catch (Exception ex) { handles(ex); } } </code></pre> <p>So what are thoughts on this set of tactics to centralize exception handling? If it is a bad direction, are there specific reasons why it might end up getting me in trouble?</p> http://stackoverflow.com/questions/1665093/core-html-css-javascript-frameworks/1665106#1665106 1 Answer by David in Dakota for Core HTML/CSS/Javascript Frameworks David in Dakota 2009-11-03T03:43:20Z 2009-11-03T03:43:20Z <p>I've always really liked Prototype/Scriptaculous despite some involved work with YUI and to a lesser extent jQuery. Perhaps it's because Scriptaculous "gets out of the way" best.</p> http://stackoverflow.com/questions/1615962/what-does-clipboard-or-sendkeys-class-has-to-do-with-winforms/1615972#1615972 -1 Answer by David in Dakota for What does Clipboard or SendKeys class has to do with WinForms? David in Dakota 2009-10-23T21:24:15Z 2009-10-23T21:24:15Z <p>SendKeys can be handy for highlighting of textboxes. SendKeys "{HOME}+{END}" is a typical technique carried over from Visual Basic once a textbox has focus. </p> <p>The Clipboard class is useful because it allows you to get data stored on a machine's clipboard, especially useful if it's data that comes from another application running. The clipboard is expected behavior in almost all applications that have any copy/paste semantic.</p> http://stackoverflow.com/questions/1613822/cross-language-c-and-java-development/1613843#1613843 0 Answer by David in Dakota for Cross language C# and Java development David in Dakota 2009-10-23T14:28:33Z 2009-10-23T14:28:33Z <p>This is such a broad question but I'd recommend focusing on standards that apply to both platforms; XML or some other standard form of serialization, using REST for services if they need to interoperate.</p> http://stackoverflow.com/questions/1556264/c-compiler-behavior-question 0 C# Compiler Behavior Question? David in Dakota 2009-10-12T18:51:26Z 2009-10-15T19:51:34Z <p>Hey everyone, in the following code, what should the result of d be after the second expression? </p> <pre><code> int d = 1; d += d++; </code></pre> <p>One would assume d is 3 afterwards but the unary increment d++ doesn't seem to take effect and d retains a value of 2. </p> <p>Is there a name for this bug? Does it exist for other compilers that support unary increment like C#? </p> http://stackoverflow.com/questions/1776739/how-to-expose-internal-system-array/1776757#1776757 Comment by David in Dakota on How to expose internal System.Array David in Dakota 2009-11-22T05:35:25Z 2009-11-22T05:35:25Z @Brian Triplett, point well taken. I don't use FxCop as a universal authority but the link has meaningful reasoning that should be considered. @Martinho, I like lucky primes. http://stackoverflow.com/questions/1772197/using-structs-with-wcf-services/1772274#1772274 Comment by David in Dakota on Using Structs with WCF Services David in Dakota 2009-11-20T19:36:34Z 2009-11-20T19:36:34Z My question was less about whether it could be done and more looking for context on when it was appropriate. http://stackoverflow.com/questions/1485958/read-excel-using-linq/1766141#1766141 Comment by David in Dakota on Read Excel using LINQ David in Dakota 2009-11-19T20:05:35Z 2009-11-19T20:05:35Z Holy crap, Linq to Excel FTW! Worth the question just to discover it as a resource. http://stackoverflow.com/questions/1758505/remove-duplicates-from-file-vs-cobol Comment by David in Dakota on Remove Duplicates From File (vs COBOL) David in Dakota 2009-11-18T19:55:53Z 2009-11-18T19:55:53Z Made it community-wiki. http://stackoverflow.com/questions/1751693/debugging-silverlight-and-silverlight-unit-tests Comment by David in Dakota on Debugging Silverlight and Silverlight Unit Tests David in Dakota 2009-11-17T21:01:55Z 2009-11-17T21:01:55Z +1 for issues debugging. I haven't been able to in my project for a while now. http://stackoverflow.com/questions/1751428/programming-language-to-automatically-navigate-website/1751435#1751435 Comment by David in Dakota on Programming language to automatically navigate website? David in Dakota 2009-11-17T20:13:06Z 2009-11-17T20:13:06Z Please don't downvote me just because Perl is Undead. http://stackoverflow.com/questions/1738289/silverlight-rich-text-box-control Comment by David in Dakota on Silverlight Rich text box control David in Dakota 2009-11-17T15:16:18Z 2009-11-17T15:16:18Z As one whose heart has been broken by 3rd party libraries, I understand at least in part the &quot;why&quot; although I agree it could wind up being a poor choice. http://stackoverflow.com/questions/1745616/consolidating-a-count-query Comment by David in Dakota on Consolidating a COUNT query David in Dakota 2009-11-16T23:47:18Z 2009-11-16T23:47:18Z On your queries in the loop, does the WHERE clause include the subject_ID? http://stackoverflow.com/questions/1726677/is-perl-officially-dead Comment by David in Dakota on Is Perl officially dead? David in Dakota 2009-11-16T00:15:49Z 2009-11-16T00:15:49Z Perl is UNDEAD: <a href="http://video.google.com/videoplay?docid=-5248422316660075262#" rel="nofollow">video.google.com/videoplay?docid=-524842231666007&hellip;</a> http://stackoverflow.com/questions/1736387/programming-languages Comment by David in Dakota on programming languages David in Dakota 2009-11-15T02:56:13Z 2009-11-15T02:56:13Z Probably not a homework question, just someone trying to know where to get started. http://stackoverflow.com/questions/1615962/what-does-clipboard-or-sendkeys-class-has-to-do-with-winforms/1615972#1615972 Comment by David in Dakota on What does Clipboard or SendKeys class has to do with WinForms? David in Dakota 2009-10-23T21:29:27Z 2009-10-23T21:29:27Z I thought once defined the use is self explanatory. By the way, a windows service wouldn't be done in a windows forms project and it's doubtful you'd need a reference to the namespace. http://stackoverflow.com/questions/1556264/c-compiler-behavior-question Comment by David in Dakota on C# Compiler Behavior Question? David in Dakota 2009-10-12T19:13:27Z 2009-10-12T19:13:27Z Sorry for the wording of my question, I've restated to try to clarify I just wanted an explanation of what was going on. http://stackoverflow.com/questions/304322/silverlight-datagrid-export-to-excel-or-csv/1221942#1221942 Comment by David in Dakota on SilverLight DataGrid: Export to excel or csv David in Dakota 2009-09-28T15:42:37Z 2009-09-28T15:42:37Z It does with some sleight of hand; it creates a CSV file, not XLS. If a person has Excel installed it opens it by virtue of the extension being mapped to Excel. http://stackoverflow.com/questions/1466846/comparing-database-platforms/1466924#1466924 Comment by David in Dakota on Comparing Database Platforms David in Dakota 2009-09-23T16:07:02Z 2009-09-23T16:07:02Z So when you worked with a specific database, you just used it because someone else had started with it? Or how did you choose, for example, PostgreSQL vs MySQL - what factors make one better for a specific scenario? Coming from the Microsoft universe I have no context for that decision. http://stackoverflow.com/questions/1461971/combining-multiple-files-into-single-archive-silverlight-c/1462011#1462011 Comment by David in Dakota on Combining Multiple Files Into Single Archive (Silverlight/C#) David in Dakota 2009-09-22T19:25:43Z 2009-09-22T19:25:43Z Hm, looks like it's GPL? <a href="http://slsharpziplib.codeplex.com/license" rel="nofollow">slsharpziplib.codeplex.com/license</a>