User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:31:39Z http://stackoverflow.com/feeds/user/19371 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/417625/how-do-i-make-the-enter-key-on-intellisense-when-typeing-in-vb-react-the-same-way/417649#417649 1 Answer 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? hurricane3 2009-01-06T18:34:46Z 2009-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-net 6 Usage Statistics: C# versus VB.NET hurricane3 2008-10-16T20:33:55Z 2008-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#389326 0 Answer by hurricane3 for Update more than one database using same ObjectDataSource using C# hurricane3 2008-12-23T16:21:13Z 2008-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#389272 0 Answer by hurricane3 for vs.net xsd hurricane3 2008-12-23T16:04:03Z 2008-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#389255 3 Answer by hurricane3 for Geospatial coordinates and distance in kilometers... (updated again) hurricane3 2008-12-23T15:59:47Z 2008-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#346408 0 Answer by hurricane3 for How to add WCF service reference in Visual Studio 2005? hurricane3 2008-12-06T15:41:49Z 2008-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#340522 1 Answer by hurricane3 for ADO.NET check if Rollback is possible hurricane3 2008-12-04T13:09:22Z 2008-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#339697 1 Answer by hurricane3 for Please confirm: Is Windows Workflow Foundation a good horse to be backing right now? hurricane3 2008-12-04T06:10:53Z 2008-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#336388 0 Answer by hurricane3 for How can I synchronize views and stored procedures between SQL Server databases? hurricane3 2008-12-03T07:04:53Z 2008-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#336364 3 Answer by hurricane3 for What are your favorite, but less obvious, Visual Studio 2008 tips and tricks? hurricane3 2008-12-03T06:45:52Z 2008-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#336355 0 Answer by hurricane3 for Drag and drop .cs files not using "Add As Link" in Visual Studio hurricane3 2008-12-03T06:35:12Z 2008-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#336353 0 Answer by hurricane3 for C# ASP.NET 3.5 content-disposition file download problems hurricane3 2008-12-03T06:29:48Z 2008-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#209526 0 Answer by hurricane3 for Tracking down intermittent 'Object reference not set to an instance of an object.' error on build hurricane3 2008-10-16T17:31:36Z 2008-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#347203 Comment by on Do you put unit tests in same project or another project? 2008-12-07T03:57:54Z 2008-12-07T03:57:54Z Then 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#234170 Comment by on What is your best programmer joke? 2008-10-24T16:16:23Z 2008-10-24T16:16:23Z I won't lie - it took me a second to get this one... :-)