User OrionRobillard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T17:12:57Zhttp://stackoverflow.com/feeds/user/16591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1717814/c-net-how-do-i-find-the-containing-namespace-from-a-class-name/1717887#17178870Answer by OrionRobillard for C#/.NET How do I find the containing namespace from a class nameOrionRobillard2009-11-11T20:36:21Z2009-11-11T20:36:21Z<p>You can right click and select "Go To Definition" in VS and this will either load the class definiftion in your solution or it will show a metadata view of the class definition using reflection. Either of those should have the namespace defined near the top of the page.</p>
<p>If you need to add the namespace with a using decliration right click the unresolved class and mouse over to resolve. It will show you a list of namespaces that contain that class and selecting one will generate the using statement.</p>
http://stackoverflow.com/questions/1715859/i-want-to-align-div-b-with-div-a-horizontally-is-there-a-simple-way-to-do-it/1716006#17160061Answer by OrionRobillard for I want to align <div> b with <div> a horizontally, is there a simple way to do it?OrionRobillard2009-11-11T15:38:12Z2009-11-11T15:38:12Z<p>The default display mode for a div is "block" which includes a line break before and after the div. If you dont want the line breaks you can change the display property to inline which should align them horizontally as long as there is enough width in the parent element to contain both divs.</p>
<p>Display Proprties:
<a href="http://www.w3schools.com/css/pr%5Fclass%5Fdisplay.asp" rel="nofollow">http://www.w3schools.com/css/pr_class_display.asp</a></p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<div style="width:510px; background-color:#ffee88;">
<div style="display:inline; background-color:#ffeeff;">
check check 1 2
</div>
<div style="display:inline; background-color:#eeffff;">
hello this time
</div>
</div>
</html>
</code></pre>
http://stackoverflow.com/questions/1121021/sql-server-count-of-max-values-without-subquery/1121170#11211700Answer by OrionRobillard for sql server count of max values without subqueryOrionRobillard2009-07-13T18:16:14Z2009-07-13T18:22:48Z<p>How about this?</p>
<pre><code>select LibraryBranchId, MAX(daysCheckedOut), count(daysCheckedOut)
from books B
where daysCheckedOut = (select MAX(daysCheckedOut) from books where LibraryBranchID = B.LibraryBranchID)
group by LibraryBranchId
</code></pre>
http://stackoverflow.com/questions/95724/what-is-the-easiest-way-to-convert-from-asp-classic-to-asp-net6What is the easiest way to convert from asp classic to asp.net?OrionRobillard2008-09-18T18:59:45Z2008-11-16T10:27:40Z
<p>I am a .Net developer that has been tasked with upgrading a classic asp website to asp.net. The website is currently running on luck and bubble gum but there is not enough time or money to stop progress and do a full rewrite. Of course I will still need to be able to deliver new features while I am upgrading.</p>
<p>What strategies should I use to make a smooth gradual change to asp.net? Should I convert to a single tier .net solution and then refactor to a proper multi-tier solution or should I design my business and data layers now? Should I go straight to 3.5 or is it easier to just get to 1.1 and upgrade to 2.0 or 3.5 after?</p>
<p>A full conversion would probably take 3-5 months. There is also some existing 1.1 code, which is why I am considering using that as a jumping off point.</p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/86677#866771Answer by OrionRobillard for How do I programmatically create a PDF in my .NET application?OrionRobillard2008-09-17T19:26:56Z2008-09-17T19:26:56Z<p>PDFLib - I have not found PDF feature that could not be generated using PDFLib. OTOH I have not found a PDFLib feature that I could use without reading the documentation twice.</p>
http://stackoverflow.com/questions/995320/file-writeallbytes-causes-error-insufficient-system-resources-exist-to-complete/997804#997804Comment by OrionRobillard on File.WriteAllBytes causes error "Insufficient system resources exist to complete the requested service"OrionRobillard2009-11-30T22:27:13Z2009-11-30T22:27:13ZMaxRequestLength is in kilobytes.http://stackoverflow.com/questions/1717814/c-net-how-do-i-find-the-containing-namespace-from-a-class-name/1717887#1717887Comment by OrionRobillard on C#/.NET How do I find the containing namespace from a class nameOrionRobillard2009-11-11T20:48:05Z2009-11-11T20:48:05ZYeah sorry, I you were asking something else. Go to definition only works if you have already declared the namespace. Right clicking and using the resolve menu is just another way of doing the alt-shift-F10 trick.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175930#175930Comment by OrionRobillard on What's the most egregious pop culture perversion of programming?OrionRobillard2009-06-24T20:04:40Z2009-06-24T20:04:40ZAgreed. The socket comments in the last season made me shoot daiquiri out my nose.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175688#175688Comment by OrionRobillard on What's the most egregious pop culture perversion of programming?OrionRobillard2009-06-24T20:00:01Z2009-06-24T20:00:01ZI was in college doing my CS degree at the time that movie came out. We always joked that there must have been a library full of ridiculous functions named things like rotate_bag(). To this day between friends we will joke about writing the rotate_bag() enhance() or calculate_step_two() functions.