User Guy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:49:20Z http://stackoverflow.com/feeds/user/1463 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent 26 What "already invented" algorithm did you invent? Guy 2008-08-17T18:46:44Z 2009-11-29T11:00:00Z <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/502021/how-do-i-round-a-decimal-to-a-specific-fraction-in-c 1 How do I round a decimal to a specific fraction in C#? Guy 2009-02-02T02:13:45Z 2009-11-24T13:54:07Z <p>In C# rounding a number is easy:</p> <pre><code>Math.Round(1.23456, 4); // returns 1.2346 </code></pre> <p>However, I want to round a number such that the fractional part of the number rounds to the closest fractional part of a predefined fraction (e.g. 1/8th) and I'm trying to find out if the .NET library already has this built in.</p> <p>So, for example, if I want to round a decimal number to a whole eighth then I'd want to call something like:</p> <pre><code>Math.RoundFractional(1.9, 8); // and have this yield 1.875 Math.RoundFractional(1.95, 8); // and have this yield 2.0 </code></pre> <p>So the first param is the number that I want to round and the second param dictates the rounding fraction. So in this example, after rounding has taken place the figures following the decimal point can only be one of eight values: .000, .125, .250, .375, .500, .625, .750, .875</p> <p>The Questions: Is this function built into .NET somewhere? If not, does anybody have a link to a resource that explains how to approach solving this problem?</p> http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s 5 Deploy asp.net mvc beta to iis 6 causing 404's Guy 2008-10-27T14:04:01Z 2009-11-24T06:22:24Z <p>I'm struggling to get around the 404 errors from asp.net mvc beta when deploying on IIS 6. I had this working in one of the previews by mapping .mvc in IIS but this no longer works. I've read <a href="http://msmvps.com/blogs/omar/archive/2008/06/30/deploy-asp-net-mvc-on-iis-6-solve-404-compression-and-performance-problems.aspx" rel="nofollow">Omar's post</a> and several others on the web and tried their solutions but no luck so far.</p> <p>The home page opens without a problem on IIS 6 but others 404 and the site runs well on IIS 7.</p> <p>Has anybody deployed asp.net mvc beta to IIS 6 with success? If so, what adjustments did you need to make to the code and/or IIS settings to get it to work?</p> http://stackoverflow.com/questions/1787957/file-upload-changes-between-ie6-7-and-ie8-on-net 0 File Upload changes between IE6/7 and IE8 on .NET Guy 2009-11-24T05:19:42Z 2009-11-24T05:19:42Z <p>I've just created an upload page on an ASP.NET MVC application using the standard HTML for file uploading and it's working great using FireFox, IE8, Chrome, and Opera but it won't work for IE6 or IE7.</p> <p>Anybody know of any differences in IE6/7 that could be causing this to fail?</p> http://stackoverflow.com/questions/222287/what-graphics-card-benchmark-software-do-you-recommend 0 What graphics card benchmark software do you recommend? Guy 2008-10-21T15:25:05Z 2009-11-22T22:00:52Z <p>The graphics rendering on my development machine "feels" slow so I've just bought a graphics card to replace the on board graphics card.</p> <p>Before I install it I want to run some software that will measure the performance of my current card so that I can compare the before and after.</p> <p>Can you recommend something that will give me an objective measure of performance change?</p> http://stackoverflow.com/questions/467367/how-can-i-programmatically-stop-start-a-windows-service-on-a-remote-box 1 How can I programmatically stop/start a windows service on a remote box? Guy 2009-01-21T22:45:05Z 2009-11-17T17:08:43Z <p>I want to write a console or Click Once WinForms app that will programmatically stop and/or start a windows service on a remote box.</p> <p>Both boxes are running .NET 3.5 - what .NET API's are available to accomplish this?</p> http://stackoverflow.com/questions/125457/what-is-the-t-sql-syntax-to-connect-to-another-sql-server 4 What is the T-SQL syntax to connect to another SQL Server? Guy 2008-09-24T04:45:49Z 2009-11-17T16:22:10Z <p>If I need to copy a stored procedure (SP) from one SQL Server to another I right click on the SP in SSMS and select Script Stored Procedure as > CREATE to > New Query Editor Window. I then change the connection by right clicking on that window and selecting Connection > Change Connection... and then selecting the new server and F5 to run the create on the new server.</p> <p>So my question is "What is the T-SQL syntax to connect to another SQL Server?" so that I can just paste that in the top of the create script and F5 to run it and it would switch to the new server and run the create script.</p> <p>While typing the question I realized that if I gave you the back ground to what I'm trying to do that you might come up with a faster and better way from me to accomplish this.</p> http://stackoverflow.com/questions/63343/how-can-i-change-ies-homepage-without-opening-ie 0 How can I change IE's homepage without opening IE? Guy 2008-09-15T14:20:57Z 2009-11-17T14:39:07Z <p>Here's an interesting problem. On a recently installed Server 2008 64bit I opened IE and through the Tools -> Options I changed the homepage to iGoogle.com. Clicked okay and then clicked the homepage button. IE crashes.</p> <p>Now you'd think that I could just remove iGoogle as the homepage but when I open IE it immediately goes to that page and crashes on open.</p> <p>Obviously I'd prefer to find a solution to why IE is crashing on the iGoogle page but just to get IE running again I need to remove iGoogle as the homepage. Is there anyway to do this without opening IE?</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java 8 What's the difference between JavaScript and Java? Guy 2008-10-28T22:10:11Z 2009-11-15T01:00:06Z <p>The question says it all.</p> http://stackoverflow.com/questions/26857/how-do-you-programmatically-fill-in-a-form-and-post-a-web-page 0 How do you programmatically fill in a form and 'POST' a web page? Guy 2008-08-25T20:49:47Z 2009-11-14T12:26:22Z <p>Using C# and ASP.NET I want to programmatically fill in some values (4 text boxes) on a web page (form) and then 'POST' those values. How do I do this?</p> <p>Edit: Clarification: There is a service (www.stopforumspam.com) where you can submit ip, username and email address on their 'add' page. I want to be able to create a link/button on my site's page that will fill in those values and submit the info without having to copy/paste them across and click the submit button.</p> <p>Further clarification: How do automated spam bots fill out forms and click the submit button if they were written in C#?</p> http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0 9 Best way to reverse a string in C# 2.0 Guy 2008-10-23T00:31:32Z 2009-11-14T10:05:41Z <p>I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:</p> <pre><code>public string Reverse(string text) { char[] cArray = text.ToCharArray(); string reverse = String.Empty; for (int i = cArray.Length - 1; i &gt; -1; i--) { reverse += cArray[i]; } return reverse; } </code></pre> <p>Personally I'm not crazy about the function and am convinced that there's a better way to do it. Is there?</p> http://stackoverflow.com/questions/1727359/current-request-global-variable-in-c-on-asp-net 0 Current request global variable in C# on ASP.NET Guy 2009-11-13T05:46:38Z 2009-11-13T10:17:56Z <p>I'm familiar with the Application and Session Key/Value object stores in ASP.NET. I'm looking for a global store that I can put a value into when a request is made that is valid only for the duration of the request but is also accessible to the DLL's in the business layer. I've been told that there's an HttpRequest object that does this but haven't been able to find further info on it.</p> <p>The use case would be the click of a button on a web page causing a POST to the server and I would then create a value that I would want to stuff into memory just for the duration of the request until I returned the HTML to the client.</p> http://stackoverflow.com/questions/1727339/rotate-image-through-y-axis-on-web-page 0 Rotate image through Y-axis on web page Guy 2009-11-13T05:40:08Z 2009-11-13T06:12:25Z <p>What are my options for rotating an image on a web page through the Y-axis? I'm not sure if I even have the terminology right. Is this called a rotate or a transform. Most of the searches that I've done with "rotate image" show images being turned. What I'm looking for is the mirror image of the image or what it looks like if you were standing behind it.</p> <p>I'm looking for something that might be available as a plugin to jQuery or something that can be done with CSS3 or HTML5. I'm also considering doing this in Silverlight but I'm still trying to find an example of what this on the web...</p> http://stackoverflow.com/questions/1713267/order-of-send-and-preview-button-on-a-web-page-form 2 Order of Send and Preview button on a web page/form Guy 2009-11-11T05:38:33Z 2009-11-11T05:48:18Z <p>This may seem like a trivial question but I'd be interested to hear if there's a logical or right answer to it.</p> <p>Given a text box to enter data (say an email) and two buttons below it. One button is Send and the other is Preview.</p> <p>Which button should be on the left and which on the right?</p> <p>(Assume western left to right language.)</p> 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 15 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/294061/concurrency-or-performance-benefits-of-yield-return-over-returning-a-list/294083#294083 Comment by Guy on Concurrency or Performance Benefits of yield return over returning a list Guy 2009-11-27T18:17:16Z 2009-11-27T18:17:16Z +1 Great answer - thanks http://stackoverflow.com/questions/1787957/file-upload-changes-between-ie6-7-and-ie8-on-net Comment by Guy on File Upload changes between IE6/7 and IE8 on .NET Guy 2009-11-24T20:28:17Z 2009-11-24T20:28:17Z I'm struggling to get a version of IE6 or IE7 installed on the debug box to determine what part of it is failing. Will post more info when I have it. http://stackoverflow.com/questions/1727339/rotate-image-through-y-axis-on-web-page/1727432#1727432 Comment by Guy on Rotate image through Y-axis on web page Guy 2009-11-16T04:57:11Z 2009-11-16T04:57:11Z Here's an example page that I setup to demonstrate what I'm trying to achieve: <a href="http://guyellisrocks.com/examples/flipping_image.htm" rel="nofollow">guyellisrocks.com/examples/flipping_image.htm/&hellip;</a> http://stackoverflow.com/questions/1727359/current-request-global-variable-in-c-on-asp-net Comment by Guy on Current request global variable in C# on ASP.NET Guy 2009-11-13T17:49:35Z 2009-11-13T17:49:35Z Yes it is in proc http://stackoverflow.com/questions/1727339/rotate-image-through-y-axis-on-web-page/1727432#1727432 Comment by Guy on Rotate image through Y-axis on web page Guy 2009-11-13T17:48:57Z 2009-11-13T17:48:57Z +1 That's very close to what I'm looking for except that it's rotating through the x-axis. http://stackoverflow.com/questions/267323/cant-drag-files-to-solution-explorer/416439#416439 Comment by Guy on Can't drag files to Solution Explorer Guy 2009-11-11T18:25:53Z 2009-11-11T18:25:53Z From SuperUser: ...you can't actually elevate Windows Explorer. Despite seeing the option in the context menu of the Windows Explorer icon and a UAC prompt being displayed, the fact is Windows Explorer will not be elevated. http://stackoverflow.com/questions/267323/cant-drag-files-to-solution-explorer Comment by Guy on Can't drag files to Solution Explorer Guy 2009-11-11T18:24:22Z 2009-11-11T18:24:22Z Looks like this is also being discussed on SuperUser: <a href="http://superuser.com/questions/59051/" rel="nofollow">superuser.com/questions/59051</a> http://stackoverflow.com/questions/267323/cant-drag-files-to-solution-explorer Comment by Guy on Can't drag files to Solution Explorer Guy 2009-11-11T18:22:06Z 2009-11-11T18:22:06Z I just moved from Server 2008 (as a desktop) to Win7 x64 Ultimate and am now experiencing this same problem. I run VS2008 as Admin and have also tried running Explorer as Admin and Standard but no luck so far. 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