User Pat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:51:41Z http://stackoverflow.com/feeds/user/36 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914487/how-to-create-a-system-drawing-color-from-its-hexadecimal-rgb-string/1914537#1914537 2 Answer by Pat for How to create a System.Drawing.Color from its hexadecimal RGB string? Pat 2009-12-16T13:01:05Z 2009-12-16T13:01:05Z <p>You can use the System.Drawing.ColorTranslator static method FromHtml.</p> <p>use:</p> <pre><code>System.Drawing.ColorTranslator.FromHtml("#FFFFFF"); </code></pre> http://stackoverflow.com/questions/1888317/are-implicitly-typed-variables-the-way-forward-c/1888345#1888345 0 Answer by Pat for Are implicitly-typed variables the way forward (C#) Pat 2009-12-11T14:16:12Z 2009-12-11T14:16:12Z <p>I believe its more of a suggestion and should be considered, but not necessarily implemented fully.</p> <p>While personal I believe the best use of var is when the declaring/returning type is obvious, i.e:</p> <pre><code>var temp = "Test me now"; </code></pre> <p>versus </p> <pre><code>var temp = GetTestData(); </code></pre> <p>Also I really enjoy being able to declare generic types with less code:</p> <pre><code> var test = new Dictionary&lt;string,string&gt;(); </code></pre> <p>versus</p> <pre><code> Dictionary&lt;string, string&gt; test = new Dictionary&lt;string,string&gt;(); </code></pre> http://stackoverflow.com/questions/4783/interview-questions-for-an-intern/539771#539771 -1 Answer by Pat for Interview Questions for an Intern Pat 2009-02-12T02:32:12Z 2009-12-04T17:20:27Z <p>What is ViewState and how is it used?<br/> Write a SQL query to obtain all customers who have a [budget] over $500.<br/> Describe the var keyword and the pros and cons of it.<br/> How do you instantiate a Generic List of Customer classes?<br/> What is the difference between ExecuteNonQuery and ExecuteScalar?<br/></p> <p>Using the following HTML code and using CSS. Style the class "a2" to have a bolded, underlined text with a red background.</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;a class="a1" href="a1.html"&gt;Uno&lt;/a&gt;&lt;br&gt; &lt;a class="a2" href="a2.html"&gt;Dos&lt;/a&gt;&lt;br&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1846818/restful-application-from-html/1846835#1846835 1 Answer by Pat for Restful Application from HTML Pat 2009-12-04T13:06:13Z 2009-12-04T13:06:13Z <p>Based on <a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.13.1" rel="nofollow">w3c recommendations</a> you should only use post and/or put methods for form submission. Unless you are performing some kind of client side validation/submission.</p> http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring/1797754#1797754 0 Answer by Pat for C# Switch Statement refactoring Pat 2009-11-25T15:36:03Z 2009-11-25T15:36:03Z <p>My first crack:</p> <pre><code>if (ts.TotalDays &gt;= 2 &amp;&amp; ts.TotalDays &lt;= 4) { switch (pickupDate.DayOfWeek) { case DayOfWeek.Thursday: case DayOfWeek.Friday: case DayOfWeek.Saturday: if (pickupDate.DayOfWeek == DayOfWeek.Thursday &amp;&amp; pickupDate.Hour &lt;= 12) return false; switch (dropoffDate.DayOfWeek) { case DayOfWeek.Sunday: return true; case DayOfWeek.Monday: return dropoffDate.Hour &lt;= 12; } return false; default: return false; } } return false; </code></pre> http://stackoverflow.com/questions/1783310/adding-line-break-in-c-code-behind-page/1783326#1783326 2 Answer by Pat for Adding line break in C# Code behind page Pat 2009-11-23T14:09:39Z 2009-11-23T14:23:59Z <p>If I am understanding this correctly, you should be able to break the string into substrings to accomplish this.</p> <p>i.e.: </p> <pre><code>string s = "this is a really long string" + "and this is the rest of it"; </code></pre> http://stackoverflow.com/questions/1754258/clean-html-using-c/1783354#1783354 1 Answer by Pat for Clean HTML using C# Pat 2009-11-23T14:13:19Z 2009-11-23T14:13:19Z <p>Since you're using Html Agility Pack and know of the problems that occur, if you are limited to this known site, why not write your scraper to adjust the problems when you've loaded the HtmlDocument.</p> <p>i.e.: If you know the element always appears after the , insert the element into the first child position of the tag.....</p> http://stackoverflow.com/questions/1756117/httpwebrequest-address-vs-httpwebresponse-responseuri 0 HttpWebRequest.Address vs HttpWebResponse.ResponseUri Pat 2009-11-18T13:50:01Z 2009-11-19T02:31:25Z <p>Whats the difference between these two properties?</p> <p>To put into context, I am determining if a redirect occurs if our ResponseUri != RequestUri.</p> <p>While a redirect occurs regardless the url <a href="http://adage.com/adages/article?article%5Fid=140560" rel="nofollow">http://adage.com/adages/article?article%5Fid=140560</a> will provide a different ResponseUri (<a href="http://adage.com/adages/post.php" rel="nofollow">http://adage.com/adages/post.php</a>) than the Address (<a href="http://adage.com/adages/post?article%5Fid=140560" rel="nofollow">http://adage.com/adages/post?article%5Fid=140560</a>).</p> <p>It appears the ResponseUri takes the Content-Location header and uses it while the Address maintains the correct location. </p> <p>Would it be correct to compare the RequestUri to the HttpWebRequest.Address to check for redirects?</p> http://stackoverflow.com/questions/1595553/whats-this-used-for/1595581#1595581 1 Answer by Pat for What's "this" used for? Pat 2009-10-20T15:44:56Z 2009-10-20T15:44:56Z <p>the static declaration of the method and the this modifier passed in signifies a Extension method where all Control objects will have these methods added on as if they were initially built that way.</p> <p>i.e: now you can do </p> <pre><code>Control myControl = new Control(); myControl.InvokeIfNeeded(myaction); </code></pre> <p>or</p> <pre><code>myControl.InvokeIfNeeded(myaction, args); </code></pre> http://stackoverflow.com/questions/1579757/does-meta-refresh-require-a-full-url/1579838#1579838 0 Answer by Pat for Does Meta-refresh require a full url Pat 2009-10-16T19:06:01Z 2009-10-16T19:06:01Z <p>From practice I can say it does not require full url. However it may not be specified in any HTTP version and up to the browser. FF/IE/Chrome all seem to work without a full url.</p> http://stackoverflow.com/questions/1560130/whats-the-best-way-to-remove-or-ignore-script-and-form-tags-in-html/1560881#1560881 0 Answer by Pat for What's the best way to remove (or ignore) script and form tags in HTML? Pat 2009-10-13T15:13:40Z 2009-10-13T15:13:40Z <p>Since you're using .Net I would recommend <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow"><code>HtmlAgilityPack</code></a> as it is easy to work with and works well with malformed HTML.</p> http://stackoverflow.com/questions/1545297/fields-vs-properties-for-private-class-variables/1545310#1545310 2 Answer by Pat for Fields vs Properties for private class variables Pat 2009-10-09T18:17:07Z 2009-10-09T18:17:07Z <p>I would say its good practice to use a property. If ever you had to expose the limit value and used a local member it will require more coding while if its a property it would only require a change of its modifier.</p> <p>I think it's cleaner also.</p> http://stackoverflow.com/questions/1407942/stackoverflowexception 3 StackOverflowException Pat 2009-09-10T21:55:18Z 2009-09-10T22:02:07Z <p>With the StackOverflowException are the conditions to be thrown hardcoded or dependent on the machine the code is running on? </p> <p>I am almost certain the latter but have failed in my searches and don't ask enough questions here. </p> http://stackoverflow.com/questions/1230902/how-can-a-string-array-be-databound-to-a-listbox/1230914#1230914 0 Answer by Pat for How can a string array be databound to a ListBox? Pat 2009-08-05T02:38:04Z 2009-08-05T02:38:04Z <p>You should be able to set the list box's DataSource to the ProcessNames property in the code itself. If you are trying to use the UI to set the DataSources/Bindings that may be the culprit.</p> <p>ie:</p> <pre><code>mylistBox.DataSource = this.ProcessNames; </code></pre> http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/1160954#1160954 1 Answer by Pat for What do you wear to an interview (for an engineering position)? Pat 2009-07-21T18:38:42Z 2009-07-21T18:38:42Z <p>I've always heard and followed the idea of dressing one step/level up on what your would be peers dress like for the interview. </p> <p>At my current position when I asked about the dress they told me jeans and t-shirts are fine, its 'no big deal'. So when I came in to interview I threw on some worn pants (non-jeans) and a short sleeved button down.</p> http://stackoverflow.com/questions/1159755/where-does-system-diagnostics-debug-write-output-appear/1159761#1159761 0 Answer by Pat for Where does System.Diagnostics.Debug.Write output appear? Pat 2009-07-21T15:03:16Z 2009-07-21T15:03:16Z <p>While you are debugging in Visual Studio, display the "Output" window (View->Output). It will show there.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153347#1153347 1 Answer by Pat for Fast string comparison with list Pat 2009-07-20T12:36:45Z 2009-07-20T12:36:45Z <p>Perhaps the <a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.hybriddictionary.aspx" rel="nofollow">HybridDictionary</a> is a better option here. Its internal use is dependent on how many items are in the collection.</p> http://stackoverflow.com/questions/839888/httpwebrequest-native-gzip-compression 1 HttpWebRequest & Native GZip Compression Pat 2009-05-08T13:55:17Z 2009-07-02T19:12:05Z <p>When requesting a page with Gzip compression I am getting a lot of the following errors:</p> <blockquote> <p>System.IO.InvalidDataException: The CRC in GZip footer does not match the CRC calculated from the decompressed data</p> </blockquote> <p>I am using native GZipStream to decompress and am looking at addressing this. With that in mind is there a work around for addressing this or another GZip library (free?) which will handle this issue properly?</p> <p>I am verifying the webResponse ContentEncoding is GZIP</p> <p><strong>Update 5/11</strong> A simplified snippit</p> <pre><code>//Caller public void SOSampleGet(string url) { // Initialize the WebRequest. webRequest = (HttpWebRequest)WebRequest.Create(url); webRequest.Method = WebRequestMethods.Http.Get; webRequest.KeepAlive = true; webRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; webRequest.Headers.Add("Accept-Encoding", "gzip,deflate"); webRequest.Referer = WebUtil.GetDomain(url); HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse(); using (Stream stream = GetStreamForResponse(webResponse, READTIMEOUT_CONST)) { //use stream } } //Method private static Stream GetStreamForResponse(HttpWebResponse webResponse, int readTimeOut) { Stream stream; switch (webResponse.ContentEncoding.ToUpperInvariant()) { case "GZIP": stream = new GZipStream(webResponse.GetResponseStream(), CompressionMode.Decompress); break; case "DEFLATE": stream = new DeflateStream(webResponse.GetResponseStream(), CompressionMode.Decompress); break; default: stream = webResponse.GetResponseStream(); stream.ReadTimeout = readTimeOut; break; } return stream; } </code></pre> http://stackoverflow.com/questions/978959/end-of-month-calculations/979307#979307 0 Answer by Pat for End of month calculations Pat 2009-06-11T04:19:31Z 2009-06-11T04:19:31Z <p>You could use the DateTime.DaysInMonth() method something like the following:</p> <pre><code>DateTime workingMonth = new DateTime(2009, 06, 30).AddDays(1); int nextMonthDays = DateTime.DaysInMonth(workingMonth.Year, workingMonth.Month); DateTime newMonth = new DateTime(workingMonth.Year, workingMonth.Month, nextMonthDays); </code></pre> http://stackoverflow.com/questions/939941/c-where-is-the-authcookie-set/940090#940090 0 Answer by Pat for C# Where is the Authcookie set? Pat 2009-06-02T15:07:41Z 2009-06-02T15:07:41Z <p>To get a better understanding of this I would highly recommend using a Http analyzer like the <a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HttpFox</a> extension for FireFox. It allows you to see what cookies from authentication come across and are stored. </p> http://stackoverflow.com/questions/148642/regular-expression-to-filter-files-in-openfiledialog/937815#937815 0 Answer by Pat for Regular expression to filter files in OpenFileDialog Pat 2009-06-02T03:34:26Z 2009-06-02T03:34:26Z <p>You should be able to do it with the following filter: Data Files|*_1.xml</p> http://stackoverflow.com/questions/887586/convert-string-to-int/887596#887596 0 Answer by Pat for convert string to int Pat 2009-05-20T12:23:40Z 2009-05-20T12:23:40Z <p>Are you checking for an empty string?</p> <pre><code>int yourInteger; string newItem; newItem = textBox1.Text.Trim(); if(newItem != string.Empty) { if ( newItem == Convert.ToInt32(textBox1.Text)) { listBox1.Items.Add(newItem); } } </code></pre> http://stackoverflow.com/questions/885987/c-restricting-types-in-method-parameters-not-generic-parameters/886015#886015 0 Answer by Pat for C#: Restricting Types in method parameters (not generic parameters) Pat 2009-05-20T03:29:21Z 2009-05-20T03:29:21Z <p>You can use the following:</p> <pre><code>public void Foo&lt;T&gt;(T variable) where T : MyClass { ... } </code></pre> <p>The call would be like the following:</p> <pre><code>{ ... Foo(someInstanceOfMyClass); ... } </code></pre> http://stackoverflow.com/questions/877737/whats-the-most-abused-features-in-visual-studio-c/877875#877875 0 Answer by Pat for What's the most abused features in Visual Studio / C#? Pat 2009-05-18T13:58:15Z 2009-05-18T13:58:15Z <p>Not paying attention to Warnings</p> http://stackoverflow.com/questions/868572/how-to-convert-object-to-liststring-in-one-line-of-c-3-0/868630#868630 0 Answer by Pat for How to convert object[] to List<string> in one line of C# 3.0? Pat 2009-05-15T13:18:58Z 2009-05-15T13:18:58Z <p>While not a one liner with respect to List&lt;> declaration, gives you same effect without requiring Linq.</p> <pre><code>List&lt;string&gt; list = new List&lt;string&gt;(); Array.ForEach(values, value =&gt; list.Add(value.ToString())); </code></pre> http://stackoverflow.com/questions/864153/c-switch-variable-initialization-why-does-this-code-not-cause-a-compiler-error/864165#864165 -2 Answer by Pat for C# switch variable initialization: Why does this code NOT cause a compiler error or a runtime error? Pat 2009-05-14T15:52:59Z 2009-05-14T15:52:59Z <p>move the string declaration to before the </p> <pre><code>switch(value) </code></pre> <p>statement. Then assign x for each case.</p> http://stackoverflow.com/questions/861566/c-to-iphone-dev/861576#861576 1 Answer by Pat for C# to iPhone dev Pat 2009-05-14T04:36:28Z 2009-05-14T04:36:28Z <p>Take a look at <a href="http://code.google.com/p/iui/" rel="nofollow">iUi on google code</a>. Its a set of css and javascript that gives you the look of an iPhone app which you can use in .net. Test in Safari and you have a similar setup as the iPhone itself.</p> <p>Actually this wont let you make an iPhone app; instead it will allow you to make a web application.</p> http://stackoverflow.com/questions/855901/best-way-to-find-which-cell-of-string-array-contins-text/855971#855971 2 Answer by Pat for Best way to Find which cell of string array contins text Pat 2009-05-13T03:47:00Z 2009-05-13T12:09:16Z <p>Can use the static method FindAll of the Array class: It will return the string itself though, if that works..</p> <pre><code>string[] test = { "Sex", "Love", "Rock and Roll", "Drugs", "Computer"}; Array.FindAll(test, item =&gt; item.Contains("Sex") || item.Contains("Drugs") || item.Contains("Computer")); </code></pre> <p>The => indicates a lamda expression. Basically a method without a concrete implementation. You can also do this if the lamda gives you the creeps.</p> <pre><code>//Declare a method private bool HasTag(string s) { return s.Contains("Sex") || s.Contains("Drugs") || s.Contains("Computer"); } string[] test = { "Sex", "Love", "Rock and Roll", "Drugs", "Computer"}; Array.FindAll(test, HasTag); </code></pre> http://stackoverflow.com/questions/846496/string-replace-not-behaving-as-expected/846509#846509 2 Answer by Pat for string.Replace not behaving as expected Pat 2009-05-11T02:10:20Z 2009-05-11T03:08:14Z <p>If I understand this correctly: Your first statement is not assigning the return value, since replace returns a new instance of the string replaced.</p> <pre><code>_body = _body.Replace("##" + _variableName + "##", templateVariables[_variableName]); </code></pre> <p>should fix you there.</p> <p>The second instance you have the variable getting replace changed ToUpper() and the actual string containing mixed cased values.</p> <p>Your string should be </p> <pre><code>Hello ##FIRSTNAME## ##LASTNAME##, </code></pre> http://stackoverflow.com/questions/840595/what-qualities-make-a-good-developer/840626#840626 0 Answer by Pat for What qualities make a good developer? Pat 2009-05-08T16:15:09Z 2009-05-08T16:15:09Z <p>Likes to learn, hates to be wrong (but can admit and take it), open to criticism, driven. I think the last is probably one of the best and relates to the others.</p> http://stackoverflow.com/questions/4783/interview-questions-for-an-intern/539771#539771 Comment by Pat on Interview Questions for an Intern Pat 2009-12-04T17:20:16Z 2009-12-04T17:20:16Z haha woops, now we can see the true horrors of coding. Edited. http://stackoverflow.com/questions/1756117/httpwebrequest-address-vs-httpwebresponse-responseuri/1756780#1756780 Comment by Pat on HttpWebRequest.Address vs HttpWebResponse.ResponseUri Pat 2009-11-18T20:19:29Z 2009-11-18T20:19:29Z I have considered setting the AllowAutoRedirect to false, however if I am able to handle the redirect with the current comparison I would venture for that. http://stackoverflow.com/questions/1407942/stackoverflowexception Comment by Pat on StackOverflowException Pat 2009-09-11T02:14:11Z 2009-09-11T02:14:11Z I mean if there is a hard limit to when the stack is filled essentially or is it some other percentage of memory or some other ratio of the current machine? http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/41695#41695 Comment by Pat on Use of var keyword in C# Pat 2009-08-07T05:02:44Z 2009-08-07T05:02:44Z Not necessarily. So long as when I am going through the code I know immediately what type the variable is without having to check the method assigning it, I'm all for it. http://stackoverflow.com/questions/180629/remove-last-row-databound-datagridview-c/180969#180969 Comment by Pat on Remove Last Row Databound DataGridView C# Pat 2009-06-12T22:40:09Z 2009-06-12T22:40:09Z setting to null and back to collection worked. http://stackoverflow.com/questions/863582/copying-winforms-between-projects-in-visual-studio Comment by Pat on Copying winforms between projects in Visual Studio Pat 2009-05-14T14:29:55Z 2009-05-14T14:29:55Z Duplicate: <a href="http://stackoverflow.com/questions/599419/how-to-copy-form-in-project/599435#599435" rel="nofollow" title="how to copy form in project">stackoverflow.com/questions/599419/&hellip;</a> http://stackoverflow.com/questions/599419/how-to-copy-form-in-project/599435#599435 Comment by Pat on How to copy Form in Project Pat 2009-05-13T16:53:11Z 2009-05-13T16:53:11Z If it's in the same solution it does. You have to copy at the root of the Form. http://stackoverflow.com/questions/839888/httpwebrequest-native-gzip-compression/840220#840220 Comment by Pat on HttpWebRequest & Native GZip Compression Pat 2009-05-08T15:54:41Z 2009-05-08T15:54:41Z Its wrapped in a Try/Catch/Finally calling Dispose() of the stream in the finally block. http://stackoverflow.com/questions/839888/httpwebrequest-native-gzip-compression/840196#840196 Comment by Pat on HttpWebRequest & Native GZip Compression Pat 2009-05-08T15:53:56Z 2009-05-08T15:53:56Z Not my site, it seems particular to a few sites I am requesting from however. http://stackoverflow.com/questions/839888/httpwebrequest-native-gzip-compression/839919#839919 Comment by Pat on HttpWebRequest & Native GZip Compression Pat 2009-05-08T14:27:37Z 2009-05-08T14:27:37Z cwrea is correct http://stackoverflow.com/questions/825087/accessing-jump-links-the-part-of-the-url-after-a-hasch-character-from-the-co/825114#825114 Comment by Pat on Accessing Jump Links (the part of the URL after a hasch character, #) from the code behind Pat 2009-05-05T14:41:39Z 2009-05-05T14:41:39Z +1 Initialize a Uri object and you should be able to access the fragment. http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/756006#756006 Comment by Pat on Do you say No to C# Regions? Pat 2009-04-18T03:37:22Z 2009-04-18T03:37:22Z @Earwicker A tool is maintaining it, there is no manual action necessary really. I think the real question is how a team adopts it; not if a single person does. Currently I've had no complaints. http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/459453#459453 Comment by Pat on What was your first computer game that got you interested in computers? Pat 2009-04-10T15:06:29Z 2009-04-10T15:06:29Z Monkey island! Wow I can't believe I forgot of that one... so many hours spent on that one. http://stackoverflow.com/questions/635152/how-do-i-properly-cancel-and-restart-a-backgroundworker-process Comment by Pat on How do I properly cancel and restart a BackgroundWorker process? Pat 2009-03-12T02:51:45Z 2009-03-12T02:51:45Z I mean exit the procedure if e.Cancelled is true. http://stackoverflow.com/questions/630652/xml-c-fast-way-to-find-node/630677#630677 Comment by Pat on XML C# Fast Way To Find Node Pat 2009-03-10T15:10:59Z 2009-03-10T15:10:59Z I think his question was suited fine as he specified what he wants, no need to suggest something outside the scope of the question.