User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:31:39Zhttp://stackoverflow.com/feeds/user/19371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/417625/how-do-i-make-the-enter-key-on-intellisense-when-typeing-in-vb-react-the-same-way/417649#4176491Answer by hurricane3 for How do I make the Enter key on intellisense when typeing in VB react the same way as in C# in Visual Studio?hurricane32009-01-06T18:34:46Z2009-01-06T18:34:46Z<p>I know that this doesn't really answer your question, but intellisense is designed to work so that you just push the "next" character to choose the highlighted item (such as open parenthesis, period, semi-colon, etc).</p>
http://stackoverflow.com/questions/210187/usage-statistics-c-versus-vb-net6Usage Statistics: C# versus VB.NEThurricane32008-10-16T20:33:55Z2008-12-23T22:31:09Z
<p>When .NET was first introduced, it was common (and an obvious choice) for people coming from a VB6 background to jump into the .NET world with VB.NET rather than C#. Today, we use C# for over 90% of our projects, but occasionally we will provide support or services to organizations that have standardized on VB.NET.</p>
<p>Today, there several tools that can alert developers to certain problems and inconsistencies when developing with C# (StyleCop and ReSharper come to mind). However, VB.NET does not seem to enjoy the same level of support in the .NET ecosystem these days. Even looking at the tags on StackOverflow seems to show almost a 10-to-1 lead for C#.</p>
<p>Has anyone ever seen any sort of usage statistics comparing C# development to VB.NET development? If you were starting development on a new .NET project today, which of those two languages are you more likely to choose and why?</p>
http://stackoverflow.com/questions/389298/update-more-than-one-database-using-same-objectdatasource-using-c/389326#3893260Answer by hurricane3 for Update more than one database using same ObjectDataSource using C#hurricane32008-12-23T16:21:13Z2008-12-23T16:21:13Z<p>I would say no; I don't think that's possible as a SqlCommand must be associated with exactly one connection string.</p>
<p>Since you're using an ObjectDataSource, why not write a "midde-tier" object that handles it? Typically, I'll have a class called something like CustomerManager that exposes all the methods required by the ObjectDataSource for CRUD operations.</p>
<p>Suppose you're updating a Customer's address, and need to touch on another database: your Update(...) method in your CustomerManager class then can call both databases inside of the method. This nice thing about this approach is that you can even wrap everything inside of a TransactionScope block and if you are updating more than one database, .NET will automatically "upsize" the transaction to a distributed transaction.</p>
<p>I hope that makes enough sense to get you going in the right direction!</p>
http://stackoverflow.com/questions/389164/vs-net-xsd/389272#3892720Answer by hurricane3 for vs.net xsdhurricane32008-12-23T16:04:03Z2008-12-23T16:04:22Z<p>I believe your best bet would be to run xsd.exe as a pre-build event, and setting the build action for your XSD to "None".</p>
http://stackoverflow.com/questions/389211/geospatial-coordinates-and-distance-in-kilometers-updated-again/389255#3892553Answer by hurricane3 for Geospatial coordinates and distance in kilometers... (updated again)hurricane32008-12-23T15:59:47Z2008-12-23T15:59:47Z<p>Check out <a href="http://www.movable-type.co.uk/scripts/latlong.html" rel="nofollow">http://www.movable-type.co.uk/scripts/latlong.html</a></p>
<p>That site has a lot of different formulas and Javascript code that should help you out. I've successfully translated it into both C# and a SQL Server UDF and I use them all over the place.</p>
<p>Enjoy!</p>
http://stackoverflow.com/questions/346329/how-to-add-wcf-service-reference-in-visual-studio-2005/346408#3464080Answer by hurricane3 for How to add WCF service reference in Visual Studio 2005?hurricane32008-12-06T15:41:49Z2008-12-06T15:41:49Z<p>In this case, I think your best bet is probably to provide the already-generated proxy class(es) to the client.</p>
http://stackoverflow.com/questions/340425/ado-net-check-if-rollback-is-possible/340522#3405221Answer by hurricane3 for ADO.NET check if Rollback is possiblehurricane32008-12-04T13:09:22Z2008-12-04T13:09:22Z<p>A lot of this complexity is handled by using a TransactionScope object in a "using" statement - check it out on <a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx" rel="nofollow">MSDN</a>. One caveat is that a TransactionScope will automatically "scale up" to use a distributed transaction when it is deemed necessary - sometimes this is desireable, and other times it isn't, so be careful if you are nesting TransactionScopes.</p>
http://stackoverflow.com/questions/339666/please-confirm-is-windows-workflow-foundation-a-good-horse-to-be-backing-right-n/339697#3396971Answer by hurricane3 for Please confirm: Is Windows Workflow Foundation a good horse to be backing right now?hurricane32008-12-04T06:10:53Z2008-12-04T06:10:53Z<p>My understanding is that Microsoft will provide backwards compatibility and/or a migration strategy to the new WF, so I would guess that you are safe to use it. However, I have heard from other developers in my organization that the current version of WF is extremely painful to use. If you have the budget (and depending on the complexity of your workflows), you may want to consider K2: <a href="http://www.k2.com/en/index.aspx" rel="nofollow">http://www.k2.com/en/index.aspx</a></p>
http://stackoverflow.com/questions/335805/how-can-i-synchronize-views-and-stored-procedures-between-sql-server-databases/336388#3363880Answer by hurricane3 for How can I synchronize views and stored procedures between SQL Server databases?hurricane32008-12-03T07:04:53Z2008-12-03T10:44:30Z<p>I use (and love) the RedGate tools, but when Microsoft announced Visual Studio 2010, they decided to allow MSDN subscribers who get Visual Studio 2008 Team System to also get Visual Studio 2008 Database Edition (which has a schema compare tool).</p>
<p>So if you or your organization has an MSDN subscription, you might want to consider downloading and installing the Database Edition over your Team System to get all the features now.</p>
<p>More details at <a href="http://msdn.microsoft.com/en-us/vsts2008/products/cc990295.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vsts2008/products/cc990295.aspx</a></p>
http://stackoverflow.com/questions/336218/what-are-your-favorite-but-less-obvious-visual-studio-2008-tips-and-tricks/336364#3363643Answer by hurricane3 for What are your favorite, but less obvious, Visual Studio 2008 tips and tricks?hurricane32008-12-03T06:45:52Z2008-12-03T06:45:52Z<p>I'd recommend you check out the Webcast for session TL46 from PDC 2008: Microsoft Visual C# IDE: Tips and Tricks. The speaker points out some non-obvious things, and also talks about the free, recently released "express" version of CodeRush and some of the things that it can do.</p>
<p><a href="http://channel9.msdn.com/pdc2008/TL46/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL46/</a></p>
http://stackoverflow.com/questions/336333/drag-and-drop-cs-files-not-using-add-as-link-in-visual-studio/336355#3363550Answer by hurricane3 for Drag and drop .cs files not using "Add As Link" in Visual Studiohurricane32008-12-03T06:35:12Z2008-12-03T06:35:12Z<p>This is sort of a side comment, but if you do what I think you're asking, you'll have to be careful about the story around source control: I think that if the files don't exist in your workspace / mapped folder, you won't be able to store them in the structure that it will appear in your solution explorer pane...</p>
http://stackoverflow.com/questions/336345/c-asp-net-3-5-content-disposition-file-download-problems/336353#3363530Answer by hurricane3 for C# ASP.NET 3.5 content-disposition file download problems hurricane32008-12-03T06:29:48Z2008-12-03T06:29:48Z<p>Have you tried setting the content-disposition to "attachment" rather than "inline"? I believe that the browser will then prompt the user to open or save the document.</p>
<p>Also, you can usually bypass the file system by writing your byte stream from the database directly to the Response object with the BinaryWrite method... This is also a case where you might want to investigate using an HTTP Handler instead on an ASPX page so that you don't need to worry about clearing the Response, etc. I have had success in the past with using a hidden iframe on the page, then using Javascript to set its src to an HTTP Handler that takes the document ID as a parameter on the QueryString.</p>
http://stackoverflow.com/questions/209465/tracking-down-intermittent-object-reference-not-set-to-an-instance-of-an-object/209526#2095260Answer by hurricane3 for Tracking down intermittent 'Object reference not set to an instance of an object.' error on buildhurricane32008-10-16T17:31:36Z2008-10-16T17:31:36Z<p>Just to clarify, is it the compiler itself that is choking? Are you doing anything weird with #define and #if directives in your code? Maybe something is being done out of order at some point... Just a thought...</p>
http://stackoverflow.com/questions/347156/do-you-put-unit-tests-in-same-project-or-another-project/347203#347203Comment by on Do you put unit tests in same project or another project?2008-12-07T03:57:54Z2008-12-07T03:57:54ZThen how do you unit test internal classes? Or do you only test the public classes?http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234170#234170Comment by on What is your best programmer joke?2008-10-24T16:16:23Z2008-10-24T16:16:23ZI won't lie - it took me a second to get this one... :-)