User Guy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T07:45:53Z http://stackoverflow.com/feeds/user/1463 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/437522/no-links-are-available-for-the-current-selection 0 No links are available for the current selection Guy 2009-01-12T23:55:38Z 2009-11-07T10:00:01Z <p>I've just received a new development machine with VS2008 pre-installed. One of my favorite help features is the Dynamic Help pane. However, it currently shows "no links are available for the current selection" for everything.</p> <p>I'm thinking that there's a config option or way to enable this. So far Google hasn't turned up anything and I think that I've exhausted all Tools > Options so I'm now turning to an even larger knowledge base...</p> <p>Ideas?</p> http://stackoverflow.com/questions/279313/resend-to-msmq-after-exception 0 Resend to MSMQ after exception Guy 2008-11-10T21:53:50Z 2009-11-06T23:06:27Z <p>I'm trying to put a Message back into an MSMQ when an exception is thrown. The following code appears to work but the Message is not put back in the queue?</p> <pre><code>Message msg = null; try { MessageQueue MQueue = new MessageQueue(txtMsgQPath.Text); msg = MQueue.ReceiveById(txtQItemToRead.Text); lblMsgRead.Text = msg.Body.ToString(); // This line throws exception } catch (Exception ex) { lblMsgRead.Text = ex.Message; if (msg != null) { MessageQueue MQ = new MessageQueue(txtMsgQPath.Text); MQ.Send(msg); } } </code></pre> http://stackoverflow.com/questions/774536/formatting-ipv6-as-an-int-in-c-and-storing-it-in-sql-server 0 Formatting IPv6 as an int in C# and storing it in SQL Server Guy 2009-04-21T20:51:29Z 2009-10-30T16:24:23Z <p>Under IPv4 I have been parsing the string representation of IP addresses to Int32's and storing them as int's in SQL Server.</p> <p>Now with IPv6 I'm trying to find out if there's a standard or accepted way to parse the string representation of IPv6 to two Int64's using C#? Also how are people storing those values in SQL Server? As 2 fields of big int?</p> http://stackoverflow.com/questions/16704/map-vs2008-keyboard-shortcuts-to-eclipse 1 Map VS2008 keyboard shortcuts to Eclipse Guy 2008-08-19T18:37:44Z 2009-10-29T03:16:31Z <p>I mostly work in VS2008 but I need to do some java work in Eclipse. Is there an easy and fast way to map the VS2008 keyboard shortcuts to Eclipse?</p> <p>For example, I want to map F11 in Eclipse to "step info" instead of its default of F5 but don't want to have to map each and every shortcut manually...</p> http://stackoverflow.com/questions/1639976/understanding-a-factorial-function-in-python 2 Understanding a factorial function in python Guy 2009-10-28T20:41:56Z 2009-10-28T21:00:02Z <p>I'm trying to understand if the following Python function:</p> <pre><code>def factorial(i): if not hasattr(factorial, 'lstFactorial'): factorial.lstFactorial = [None] * 1000 if factorial.lstFactorial[i] is None: iProduct = 1 for iFactor in xrange(1, i+1): iProduct *= iFactor factorial.lstFactorial[i] = iProduct return factorial.lstFactorial[i] </code></pre> <p>would produce the same results as the equivalent in C#:</p> <pre><code>long factorial(long n) { return n &lt;= 1 ? 1 : n * factorial(n-1); } </code></pre> <p>for a value of 12 or less.</p> <p>I know nothing about Python but have just converted some Python code to C#. This was the only function that I didn't fully understand.</p> http://stackoverflow.com/questions/22792/is-there-an-open-source-sql-server-db-compare-tool 6 Is there an open source SQL Server DB compare tool? Guy 2008-08-22T16:26:31Z 2009-10-27T17:33:12Z <p>I'm working on an open source project that uses SQL Server 2005 as the data store. We need a DB compare tool to generate diff scripts to be able to upgrade a DB from one version to another.</p> <p>Is there an open source or free SQL Server DB diff tool out there that generates a convert script?</p> http://stackoverflow.com/questions/19096/what-net-mime-parsing-libraries-are-available 1 What .NET Mime Parsing libraries are available? Guy 2008-08-20T23:54:10Z 2009-10-25T09:27:24Z <p>I have a project that utilizes the javax.mail.internet.MimeMessage and other related classes that does mime parsing for emails that we receive. This needs to be ported to .NET.</p> <p>What .Net 3rd party or built in library can I use to replace the Java classes that I'm using?</p> <p>EDIT: Anything change in the last 9 months since I asked this question?</p> http://stackoverflow.com/questions/1620265/regex-replace-search-using-values-variables-in-search-text 1 Regex replace/search using values/variables in search text Guy 2009-10-25T07:34:09Z 2009-10-25T07:46:55Z <p>What is the regex syntax to use part of a matched expression in the subsequent part of the search?</p> <p>So, for example, if I have:<br /> "{marker=1}some text{/marker=1}"<br /> or<br /> "{marker=2}some text{/marker=2}"</p> <p>I want to use the first digit found in the pattern to find the second digit. So in<br /> "{marker=1}{marker=2}some text{/marker=2}{/marker=1}"<br /> the regex would match the 1's and then the 2's.</p> <p>So far I've come up with {marker=(\d)}(.*?){/marker=(\d)} but don't know how to specify the second \d to refer to the value found in the first \d.</p> <p>I'm doing this in C#.</p> http://stackoverflow.com/questions/1610703/how-do-you-default-an-images-right-edge-in-a-css-overflow-div 0 How do you default an image's right edge in a CSS Overflow DIV? Guy 2009-10-22T23:59:48Z 2009-10-23T04:43:37Z <p>I have the following on a page:</p> <pre><code>&lt;div style="max-width: 600px; overflow-x: scroll;"&gt; &lt;a href="PoolPanoramaBig.jpg" target="_blank"&gt; &lt;img src="PoolPanoramaBig.jpg" style=""/&gt; &lt;/a&gt; &lt;/div&gt; </code></pre> <p>If the image is wider than 600px then you can scroll the image to the left to see the rightmost part. However, I want to default it so that it is already scrolled fully to the left when initially displayed.</p> <p>I've tried setting a style in the image to float:left which works but that disables the horizontal scrollbar.</p> <p>Ideas?</p> <p>EDIT: Here's a page that might help explain what I'm trying to do: <a href="http://guyellisrocks.com/ie-example/" rel="nofollow">http://guyellisrocks.com/ie-example/</a> Do you see how you have to move the scroll bar to the right to see the right most edge of the image? I'd like it to default to that when you first hit the page.</p> <p>I don't have a problem doing this in JavaScript and if that's possible some hints would be appreciated. Otherwise if it's possible to do this with CSS then this is how I would first attempt to do this.</p> http://stackoverflow.com/questions/1608016/visual-studio-taking-long-time-to-load-solution 0 Visual Studio taking long time to load solution Guy 2009-10-22T15:26:25Z 2009-10-22T15:30:23Z <p>I know that this is a trivial problem but Visual Studio 2008 has suddenly started taking a really long time to load one particular solution that I have. While watching the status bar it appears to get stuck on one project. That project is, however, the most trivial of all projects and is a simple library with a few DTO classes in it.</p> <p>Any ideas on how to solve this?</p> http://stackoverflow.com/questions/251602/vs2008-code-coverage-cant-find-not-covered-blocks 1 VS2008 Code Coverage - can't find "not covered blocks" Guy 2008-10-30T20:18:08Z 2009-10-22T11:00:43Z <p>I'm running VS2008's Code Coverage against a unit-tested DLL that I'm developing. For some of the functions it claims that 2 blocks are not covered and 50 or so are. When I view the function with the VS2008 highlighting it can't find the uncovered blocks.</p> <p>The highlighting appears to work with some functions though as it correctly shows a different color for uncovered blocks. Seems to be inconsistent.</p> <p>Is this a bug or PIBKAC? If the latter, what am I doing wrong?</p> http://stackoverflow.com/questions/440142/asp-to-asp-net-helper-functions 0 ASP to ASP.NET Helper Functions Guy 2009-01-13T18:19:29Z 2009-10-22T03:59:48Z <p>I'm looking at converting a web site from classic ASP to ASP.NET. I'm thinking of doing an agile style approach and providing deliverables as quickly as possible and so am thinking of doing a line by line conversion and creating "bad" ASP.NET and have it all in the ASPX file for phase 1 and get that working. That, I figure, will be the fastest and safest (i.e. preserving identical functionality). The next phase would be to split the code out into codebehind and multi-tiers.</p> <p>I plan on replacing the VBScript in the ASP files with C# in the ASPX files.</p> <p>So apart from general comments about what I'm planning on doing (which I welcome) the specific question that I have is: Are there any helper functions out there that wrap the VBScript functions from ASP to a C# equivalent that someone's already done?</p> <p>So I'd be looking for a C# file (library) that has wrappers like:</p> <pre><code>string Mid(string txt,int start,int length) { return txt.SubString(start, length); // or is it start - 1? } double Abs(double num) { return Math.Abs(num); } </code></pre> http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed 14 How do I tell if .NET 3.5 SP1 is installed? Guy 2008-10-13T20:32:43Z 2009-10-16T18:37:44Z <p>How can I find out if SP1 has been installed on a server which has .NET 3.5?</p> http://stackoverflow.com/questions/1549088/sql-server-2008-express-or-enterprise 0 SQL Server 2008 Express or Enterprise Guy 2009-10-10T21:11:24Z 2009-10-15T19:46:39Z <p>I'm in a situation where I'm going to deploy a small database to a server. It can easily run in the confines of SQL Server 2008 Express. However, I could also, if I wish, deploy this to SQL Server 2008 Enterprise.</p> <p>Assuming that Express has all the functionality and size that I need. Does it offer any speed advantage over Enterprise? i.e. given that both will be sufficient for my needs which would be better to use?</p> http://stackoverflow.com/questions/106036/how-do-i-yield-to-the-ui-thread-to-update-the-ui-while-doing-batch-processing-in 3 How do I Yield to the UI thread to update the UI while doing batch processing in a WinForm app? Guy 2008-09-19T22:06:50Z 2009-10-14T23:06:35Z <p>I have a WinForms app written in C# with .NET 3.5. It runs a lengthy batch process. I want the app to update status of what the batch process is doing. What is the best way to update the UI?</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param 1 Powershell's Invoke-Expression missing param Guy 2008-08-15T17:26:44Z 2009-10-11T19:08:51Z <p>I thought that I had the latest CTP of Powershell 2 but when I try the command: invoke-expression –computername Server01 –command 'get-process powershell'</p> <p>I get an error message: A parameter cannot be found that matches parameter name 'computername'.</p> <p>So the question is: How can I tell which version of PowerShell I have installed? And what the latest version is?</p> http://stackoverflow.com/questions/1540336/return-keyvaluepair-or-use-out-variable-in-c 1 Return KeyValuePair or use out variable in C#? Guy 2009-10-08T20:45:32Z 2009-10-08T21:08:50Z <p>I have a function that needs to return two strings. I've considered two different ways to do this:</p> <pre><code>string first = "this is first"; string second = "this is second"; KeyValuePair&lt;string, string&gt; ReturnPair() { return new KeyValuePair&lt;string, string&gt;(first, second); } string ReturnOne(out string other) { other = second; return first; } </code></pre> <p>I would like to use the KeyValuePair&lt;> approach but I feel that I am misusing the purpose for which this object was created.</p> <p>My questions:</p> <ol> <li>Is there a better way to return 2 strings in this example? </li> <li>Is there anything wrong with returning the KeyValuePair?</li> </ol> http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server 29 Insert Update stored proc on SQL Server Guy 2008-08-17T06:48:50Z 2009-10-07T04:43:16Z <p>I've written a stored proc that will do an update if a record exists, otherwise it will do an insert. It looks something like this:</p> <pre><code>update myTable set Col1=@col1, Col2=@col2 where ID=@ID if @@rowcount = 0 insert into myTable (Col1, Col2) values (@col1, @col2) </code></pre> <p>My logic behind writing it in this way is that the update will perform an implicit select using the where clause and if that returns 0 then the insert will take place.</p> <p>The alternative to doing it this way would be to do a select and then based on the number of rows returned either do an update or insert. This I considered inefficient because if you are to do an update it will cause 2 selects (the first explicit select call and the second implicit in the where of the update). If the proc were to do an insert then there'd be no difference in efficiency.</p> <p>Is my logic sound here? Is this how you would combine an insert and update into a stored proc?</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent 19 What "already invented" algorithm did you invent? Guy 2008-08-17T18:46:44Z 2009-10-07T04:33:49Z <p>In my question <a href="http://beta.stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server" rel="nofollow">Insert Update stored proc on SQL Server</a> I explained an efficient way of doing an insert/update - perhaps THE most efficient. It's nothing amazing but it's a small algorithm that I came up with in a mini-Eureka moment. Although I had "invented" it by myself and secretly hoped that I was the first to do so I knew that it had probably been around for years but after posting on a couple of lists and not getting confirmation I had never found anything definitive written up about it.</p> <p>So my questions: What software algorithm did you come up with that you thought that you'd invented? Or better yet, did you invent one?</p> http://stackoverflow.com/questions/326649/c-financial-functions-library 2 C# Financial Functions library Guy 2008-11-28T20:51:16Z 2009-10-04T21:11:50Z <p>I'm looking for an open source C# .NET Financial Functions library. Something that does IRR (Internal Rate of Return) and other common functions that are available in applications like Excel.</p> <p>Suggestions?</p> http://stackoverflow.com/questions/1510876/select-to-recycle-worker-processes-after-a-specific-period-of-inactivity 0 Select to recycle worker processes after a specific period of inactivity. Guy 2009-10-02T17:28:15Z 2009-10-03T20:14:15Z <p>Can anyone confirm that this statement "<strong>Select to recycle worker processes after a specific period of inactivity</strong>" in <a href="http://technet.microsoft.com/en-us/library/cc753667.aspx" rel="nofollow">this Microsoft help file</a> is wrong and should in fact not have the "of inactivity" at the end of it?</p> http://stackoverflow.com/questions/1505659/when-does-iis-recycle-the-worker-process 0 When does IIS recycle the worker process? Guy 2009-10-01T18:31:59Z 2009-10-01T18:37:27Z <p>When I setup an application pool for my web app in IIS 6 it defaults the worker process to recycle in 1740 minutes (29 hours).</p> <p>Does this recycle happen even if there is activity on the web site or only if there is inactivity for 29 hours?</p> http://stackoverflow.com/questions/315736/how-do-i-prevent-a-wcf-service-from-enter-a-faulted-state 2 How do I prevent a WCF service from enter a faulted state? Guy 2008-11-24T22:31:33Z 2009-09-25T22:58:27Z <p>I have a WCF Service that should not enter the faulted state. If there's an exception, it should be logged and the service should continue uninterrupted. The service has a one-way operation contract and is reading messages from an MSMQ.</p> <p>My problems are twofold:</p> <ol> <li>The service appears to be swallowing an exception/fault so I am unable to debug it. How do I get the service to expose the exception so that I can log or handle it?</li> <li>The service is entering into a faulted state after this exception is swallowed. How do I prevent the service from entering into a faulted state?</li> </ol> http://stackoverflow.com/questions/23566/what-does-an-iisreset-do 12 What does an IISReset do? Guy 2008-08-22T21:37:35Z 2009-09-20T11:12:29Z <p>On IIS 6, what does an IIS Reset do? </p> <p>Please compare to recycling an app pool and stopping and starting an ASP.NET web site.</p> <p>If you replace a DLL or edit/replace the web.config on an ASP.NET web site is that the same as stopping and starting that web site?</p> http://stackoverflow.com/questions/1434908/whats-the-difference-between-peer-to-peer-and-merge-replication-with-sql-server 1 What's the difference between peer-to-peer and merge replication with SQL Server? Guy 2009-09-16T19:09:19Z 2009-09-16T20:03:05Z <p>What's the difference between peer-to-peer replication and merge replication using SQL Server?</p> http://stackoverflow.com/questions/1434315/http-status-code-for-database-is-down 0 HTTP Status Code for database is down Guy 2009-09-16T17:15:34Z 2009-09-16T17:23:20Z <p>I have a page on my web site that reports on the health of the site and sets an HTTP 200 status code is everything is okay. This page is used by an external monitoring program to check that the site is up.</p> <p>When this page is hit, I make a very lightweight DB proc call to see if the DB is up and okay. If this fails, I want to return a meaningful HTTP error code to the monitor to let it know that all is not well.</p> <p>From what I can work out there's no HTTP status that says "a third party component that I rely on is down" so what what would you return in this case?</p> <p>503 Service Unavailable...?</p> http://stackoverflow.com/questions/484169/jquery-cdn-host-with-vsdoc 1 jQuery CDN host with vsdoc? Guy 2009-01-27T16:45:55Z 2009-09-16T14:50:01Z <p>Following on from <a href="http://stackoverflow.com/questions/482358/conditionally-selecting-a-version-of-jquery-depending-on-environment">this question</a> (that I asked) and <a href="http://stackoverflow.com/questions/482308/hosted-microsoft-ajax-on-cdn">this question</a> (that Simon asked), is there a CDN that provides the jQuery script AND the -vsdoc version side-by-side?</p> <p>e.g. Google provide:</p> <pre><code>http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js </code></pre> <p>but don't provide</p> <pre><code>http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min-vsdoc.js </code></pre> <p>Does Microsoft have a CDN for jQuery?</p> http://stackoverflow.com/questions/1430015/changing-a-value-in-the-machine-config 0 Changing a value in the machine.config Guy 2009-09-15T22:44:46Z 2009-09-15T22:48:09Z <p>What is the effect of changing a value in the machine.config file? Will this trigger the equivalent of IISReset on the machine? If not, will a running application immediately pick up new values added to this file?</p> http://stackoverflow.com/questions/1250120/ctrl-shift-m-no-longer-working-in-sql-server-management-studio 2 Ctrl-Shift-M no longer working in SQL Server Management Studio Guy 2009-08-08T23:20:25Z 2009-09-10T15:25:02Z <p>I find it useful and productive to use the built in Ctrl-Shift-M when creating a new stored proc in SQL Server Management Studio (2008). On one of my machines that keyboard shortcut combo has stopped working and I've been unable to work out how to restore it.</p> <p>There could also be some new utility on my machine that's overriding that but I have been unable to find culprit if that's the case.</p> <p>Ideas?</p> http://stackoverflow.com/questions/429919/msdn-subscription-iso-extraction 3 MSDN Subscription ISO extraction Guy 2009-01-09T22:06:00Z 2009-09-10T15:06:30Z <p>What do you use to extract the contents of an ISO after you've downloaded it from MSDN Subscription?</p> http://stackoverflow.com/questions/1639976/understanding-a-factorial-function-in-python Comment by Guy on Understanding a factorial function in python Guy 2009-10-28T21:10:09Z 2009-10-28T21:10:09Z don't have python installed http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time Comment by Guy on Why does an empty loop use so much processor time? Guy 2009-10-26T07:12:18Z 2009-10-26T07:12:18Z @paul - were you doing this on a quad core? http://stackoverflow.com/questions/1610703/how-do-you-default-an-images-right-edge-in-a-css-overflow-div/1611404#1611404 Comment by Guy on How do you default an image's right edge in a CSS Overflow DIV? Guy 2009-10-23T06:26:09Z 2009-10-23T06:26:09Z That doesn't work but I think that you're onto something. Could I use JavaScript to set the focus to that and force the scroll? http://stackoverflow.com/questions/1610703/how-do-you-default-an-images-right-edge-in-a-css-overflow-div Comment by Guy on How do you default an image's right edge in a CSS Overflow DIV? Guy 2009-10-23T04:20:03Z 2009-10-23T04:20:03Z Not sure how well I explained my intentions. The image, instead of showing the left-most edge on the left and the right-most edge hidden would show the right-most edge on the right and the left-most edge hidden. The users have actually asked for this feature. They are the ones that want this. http://stackoverflow.com/questions/1608016/visual-studio-taking-long-time-to-load-solution Comment by Guy on Visual Studio taking long time to load solution Guy 2009-10-22T19:18:32Z 2009-10-22T19:18:32Z No plugins - I had resharper for a while on another machine but ended up uninstalling it. But not on the machine in question here. http://stackoverflow.com/questions/1608016/visual-studio-taking-long-time-to-load-solution/1608047#1608047 Comment by Guy on Visual Studio taking long time to load solution Guy 2009-10-22T19:17:44Z 2009-10-22T19:17:44Z Nope - no setup projects in this solution. http://stackoverflow.com/questions/1534740/javascript-navigation-in-visual-studio-2008 Comment by Guy on Javascript navigation in Visual Studio 2008 Guy 2009-10-12T20:38:39Z 2009-10-12T20:38:39Z Good question! +1 http://stackoverflow.com/questions/1540336/return-keyvaluepair-or-use-out-variable-in-c/1540364#1540364 Comment by Guy on Return KeyValuePair or use out variable in C#? Guy 2009-10-10T16:09:53Z 2009-10-10T16:09:53Z Correct, the thing that I'm returning is NOT a KeyValuePair and that's why I'm hesitant in using that construct. The thing is a Tuple. Thanks for your ideas. http://stackoverflow.com/questions/1431445/what-is-the-difference-between-a-view-model-and-a-data-transfer-object/1431490#1431490 Comment by Guy on what is the difference between a view model and a data transfer object? Guy 2009-09-16T18:56:33Z 2009-09-16T18:56:33Z Great explanation. http://stackoverflow.com/questions/1371477/visual-studio-intellisense-not-working-in-one-ascx-file/1371570#1371570 Comment by Guy on Visual Studio intellisense not working in one .ascx file Guy 2009-09-10T18:21:09Z 2009-09-10T18:21:09Z I had tried that - I did a clean and rebuild but no luck there. http://stackoverflow.com/questions/1371477/visual-studio-intellisense-not-working-in-one-ascx-file Comment by Guy on Visual Studio intellisense not working in one .ascx file Guy 2009-09-03T05:15:56Z 2009-09-03T05:15:56Z Rebooting the machine worked but I'd still love to hear any other suggestions that anyone might have to solve this... http://stackoverflow.com/questions/1371477/visual-studio-intellisense-not-working-in-one-ascx-file/1371514#1371514 Comment by Guy on Visual Studio intellisense not working in one .ascx file Guy 2009-09-03T05:11:13Z 2009-09-03T05:11:13Z Because I'm using ASP.NET MVC this control doesn't have a codebehind file and hence no designer file. Thanks anyway and +1 for a good tip. http://stackoverflow.com/questions/1347847/asp-net-mvc-alternating-classes-in-the-view/1347877#1347877 Comment by Guy on ASP.NET MVC alternating classes in the View Guy 2009-08-28T23:08:03Z 2009-08-28T23:08:03Z I like your answer and will probably mark it as the correct answer soon. To my own detriment I simplified the question too much. There are more classes in the div than I stated so out the box your answer won't work but it's a great idea and starting point that I may be able to expand on - thanks! http://stackoverflow.com/questions/1320071/i-have-two-problems-one-of-them-is-a-regex/1320286#1320286 Comment by Guy on I have two problems, one of them is a regex Guy 2009-08-24T04:48:24Z 2009-08-24T04:48:24Z Thanks for the examples - much appreciated +1 http://stackoverflow.com/questions/1320071/i-have-two-problems-one-of-them-is-a-regex/1320080#1320080 Comment by Guy on I have two problems, one of them is a regex Guy 2009-08-24T04:47:04Z 2009-08-24T04:47:04Z It didn't answer <i>that</i> question but serendipitously it answered the next question that I was going to ask so +1 for seeing into the future.