User John Dunagan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T07:02:45Zhttp://stackoverflow.com/feeds/user/28939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/358382/where-did-open-table-go-in-sql-server-20082Where did Open Table go in SQL Server 2008?John Dunagan2008-12-11T03:38:20Z2009-11-16T14:27:36Z
<p>As of SQL Server 2005, you used to be able to open a flat file in SQL Management Studio off the right click menu for any database table. Once opened, you could add or update records right there in the grid.</p>
<p>Now that SQL Server 2008 is out, Microsoft has hidden that feature, at least from the right-click menu.</p>
<p>Where did it go?</p>
http://stackoverflow.com/questions/1200785/how-to-control-the-postioning-of-a-fieldset-with-css/1200945#12009451Answer by John Dunagan for How to control the postioning of a fieldset with css?John Dunagan2009-07-29T15:05:09Z2009-07-29T15:05:09Z<p>What they said, but you can also float the car information right, which gives you the advantage of always being flush against that edge no matter the width, if that's important.</p>
http://stackoverflow.com/questions/1200731/why-does-my-floated-left-div-go-to-the-next-line-in-ie6-using-the-960-gs/1200918#12009180Answer by John Dunagan for Why does my floated left div go to the next line in IE6 using the 960.gs?John Dunagan2009-07-29T15:01:08Z2009-07-29T15:01:08Z<p>Could be something as simple as IE6's propensity to double-pad. If you dare present the 960 grid system with a hack, try this:</p>
<pre><code>padding: 10px; /* whatever the padding is supposed to be for normal browsers */
_padding: 5px; /* half of that for IE6 */
</code></pre>
<p>IE6 will render the _padding rule - other browsers will not. This works for any rule: normal style rule, first; IE6 _rule, after.</p>
http://stackoverflow.com/questions/864658/wpf-package-load-failure/1186196#11861960Answer by John Dunagan for WPF Package Load Failure?John Dunagan2009-07-27T02:36:03Z2009-07-27T02:36:03Z<p>I -FINALLY- saw this error going into Tools|Options|Environment Fonts and Colors after trying everything I could think of to get it not to crash when I chose Tools|Import and Export Settings.</p>
http://stackoverflow.com/questions/474977/visual-studio-2008-on-windows-7-beta/1186193#11861930Answer by John Dunagan for Visual Studio 2008 on Windows 7 betaJohn Dunagan2009-07-27T02:32:48Z2009-07-27T02:32:48Z<p>The only thing I've found so far, but it annoys the hell out of me, is that if I do anything with Import Export Settings, it hangs Visual Studio something fierce. Apparently, the Xaml "Package" or whatever is corrupted, even on an absolutely clean install.</p>
<p>I'm attempting a repair of the whole app.</p>
http://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field0Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-22T04:53:21Z2009-04-23T11:02:04Z
<p>Was going to call this "Eval won't give me the Time of Day," but thought that too cute.</p>
<p>I'm kind of having the opposite problem from the suggested questions I see for my title, so here goes:</p>
<p>Visual Studio 2008 Pro, SQL Express 2008, Vista. Web Project, where I'm opening records from an Event Table with JOINed info from a Facilities table.</p>
<p>I have a SQL DateTime field in a SQL file that is completely filled out: e.g., 4/30/2009 6:30 PM.</p>
<p>My field in the ListView is straight <code><%# Eval("EventDate") %></code>, and my trace, as far as I have been able to tell from watching the Autos window through retrieval from the SQLDataSource, survives intact with the 6:30 PM time of day.</p>
<p>The only instruction, to my knowledge, that comes after the DataSource is populated, is the Eval itself.</p>
<p>Yet, at render time, that datetime comes out on the page as 4/30/2009 <strong>12:00:00 AM</strong>.</p>
<p>My strong belief, therefore, is that I need additional fu to parse my Eval statement to get the same time I put into the field. I am not yet adept at this, so suggestions would be welcome. Thank you in advance.</p>
<p>Edit: supplying code per Jose.</p>
<p>DataSource:</p>
<p><code> <asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:MeetingsConnectionString %>"
onselecting="SqlDataSource1_Selecting"
SelectCommand="SELECT Events.ID, Events.FacilityID, Events.Room, Events.EventDate, Events.Speaker, Events.Topic, Facilities.ID AS Expr1, Facilities.FacilityName, Facilities.FacilityAddress, Facilities.FacilityCity, Facilities.FacilityState, Facilities.FacilityZip, Facilities.FacilityLat, Facilities.FacilityLong FROM Events INNER JOIN Facilities ON Events.FacilityID = Facilities.ID WHERE (Events.EventDate BETWEEN @EventDate AND @EventDate2) ORDER BY Events.EventDate"
ProviderName="System.Data.SqlClient">
<SelectParameters>
<asp:Parameter Name="EventDate" />
<asp:Parameter Name="EventDate2" />
</SelectParameters>
</asp:SqlDataSource>
</code></p>
<p>ListView:</p>
<p><code><asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource1"
DataKeyNames="ID,Expr1">
<AlternatingItemTemplate>
When:<asp:Label ID="EventDateLabel" runat="server" Text='<%# Eval("EventDate") %>' />
</code></p>
<p>...
<code><ItemTemplate>
When: <asp:Label ID="EventDateLabel" runat="server" Text='<%# Eval("EventDate") %>' /><br />
</code></p>
<p>Edit 2: I worked around the problem by separating EventDate into EventDate (a Date) and EventTime (a Time). I now get the proper values, and have moved on to conversion of the time value from military to civilian time (i.e., 6:30pm) in the SQL query using a CONVERT or CAST. Thanks for all of your responses.</p>
http://stackoverflow.com/questions/769042/how-do-i-tell-if-an-html-element-has-gone-off-the-bottom-of-a-page/777150#7771500Answer by John Dunagan for How do I tell if an HTML element has gone off the bottom of a page?John Dunagan2009-04-22T13:12:43Z2009-04-22T13:12:43Z<p>I'd take off the absolute positioning on your footer, and just let it flow after the content.</p>
<p>If you render it as one big page, then PDF can break the page where it needs to.</p>
http://stackoverflow.com/questions/774871/why-did-you-learn-c/775695#7756950Answer by John Dunagan for Why did you learn C?John Dunagan2009-04-22T04:35:14Z2009-04-22T04:35:14Z<p>It was the "next" language. I cut my teeth on Applesoft Basic back in the day, and programmers who wrote working C code were making many times what I was making as a tech writer / support monkey. I'm on C# now, and I love making breakthroughs in my own personal knowledge in that space just as much as I did when I discovered how to do the next thing in C.</p>
http://stackoverflow.com/questions/765570/calculating-a-t-sql-query-parameter-at-load-time0Calculating a T-SQL Query Parameter at Load TimeJohn Dunagan2009-04-19T15:32:07Z2009-04-19T16:30:50Z
<p>I'm trying to SELECT records out of an Events Database (with an EventDate field as Date) that have a EventDate that is in the current month.</p>
<p>I have functions for calculating the first day of the month:</p>
<pre><code>public string GetFirstofMonth(DateTime dt)
{
int thisMonth = dt.Month;
int thisYear = dt.Year;
string firstOfMonth = thisMonth.ToString() + "/1/" + thisYear.ToString();
return firstOfMonth;
}
</code></pre>
<p>and the last day of the month:</p>
<pre><code>public string GetLastofMonth(DateTime dt)
{
DateTime Date2Obj = new DateTime(dt.Year, dt.Month, 1);
int thisMonth = dt.Month;
int thisYear = dt.Year;
Date2Obj.AddMonths(1);
Date2Obj.AddDays(-1);
int lastDay = Date2Obj.Day;
string LastOfMonth = thisMonth + "/" + lastDay + "/" + thisYear;
return LastOfMonth;
}
</code></pre>
<p>So in the MasterPage (or the instance, doesn't matter) I have this SQLDataSource:</p>
<pre><code><asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:MeetingsConnectionString %>"
SelectCommand="SELECT * FROM [Events] WHERE (([EventDate] &gt;= @EventDate) AND ([EventDate] &lt;= @EventDate2))">
<SelectParameters>
<asp:Parameter DbType="Date" Name="EventDate" />
<asp:Parameter DbType="Date" Name="EventDate2" />
</SelectParameters>
</asp:SqlDataSource>
</code></pre>
<p>How do I modify the EventDate and EventDate2 parameters in the SQLDataSource to use GetFirstofMonth(DateTime.Today); and GetLastofMonth(DateTime.Today), respectively, as their values? Or is this not possible?</p>
http://stackoverflow.com/questions/765526/margin-collapsing-with-floated-elements/765549#765549-1Answer by John Dunagan for Margin collapsing with floated elementsJohn Dunagan2009-04-19T15:09:39Z2009-04-19T15:09:39Z<p>I got it to resolve (IE7, FF) by adding:</p>
<p><code><div style="clear:both;"></div></code></p>
<p>BETWEEN the Floating div and the Footer.</p>
<p>[Edit:] When you float an element, and put an element after it that you want to start at the beginning of the next space, you should/must use a clearing element. Zack's right, too: If you're just stacking divs, you don't/shouldn't float anything.</p>
http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/764909#7649090Answer by John Dunagan for Entity Framework vs LINQ to SQLJohn Dunagan2009-04-19T05:48:50Z2009-04-19T05:48:50Z<p>Neither yet supports the unique SQL 2008 datatypes. The difference from my perspective is that Entity still has a chance to construct a model around my geographic datatype in some future release, and Linq to SQL, being abandoned, never will.</p>
<p>Wonder what's up with nHibernate, or OpenAccess...</p>
http://stackoverflow.com/questions/449858/how-to-dynamically-create-an-image-with-a-specified-number-on-it/450698#4506980Answer by John Dunagan for How to dynamically create an image with a specified number on it?John Dunagan2009-01-16T15:16:09Z2009-01-16T15:16:09Z<p>Why not set the number as text in a div, then style it with font and background choices?</p>
http://stackoverflow.com/questions/33933/textarea-with-100-width-ignores-parent-elements-width-in-ie7/450690#4506900Answer by John Dunagan for textarea with 100% width ignores parent element's width in IE7John Dunagan2009-01-16T15:13:58Z2009-01-16T15:13:58Z<p>I've run into this problem before. It's related to how HTML parses table and cell widths.</p>
<p>You're fine setting 300 as a width as long as the contents of the element can never exceed that (setting a div with a definite width inside and an overflow rule is my favorite way). </p>
<p>But absent a solution like the above, the minute ANY element pushes you past that width, all bets are off. The element becomes as wide as it has to to accommodate the contents.</p>
<p>Additional tip - encase your width values in whatever set of quotes will nest the value properly (<code><table width='300'</code>). If someone comes along and changes it to a %, it will ignore the %, otherwise.</p>
<p>Unfortunately, you're always going to have trouble breaking strings that do not have 'natural' breaks in IE, unless you can do something to break them up via code.</p>
http://stackoverflow.com/questions/447359/why-cant-i-bind-a-formview-to-this-datasource/447420#4474200Answer by John Dunagan for Why can't I bind a formview to this datasource? John Dunagan2009-01-15T16:20:36Z2009-01-15T16:20:36Z<p>Does your FormView have an ItemTemplate?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms228089.aspx" rel="nofollow">MSDN</a> seems to imply that although it is possible, you need one.</p>
http://stackoverflow.com/questions/445624/learning-net-if-you-already-know-several-languages/447398#4473980Answer by John Dunagan for Learning .NET if you already know several languagesJohn Dunagan2009-01-15T16:15:20Z2009-01-15T16:15:20Z<p>I concur with the 'yes' people. You know C++, so you've already got the underpinnings of C#. Get and install the latest Visual Studio Express SKU, and join the crowd...</p>
<p>Also, hit INETA.org and find the closest User Group to where you live. You'll get a ton of good help along the way.</p>
http://stackoverflow.com/questions/446743/best-book-to-get-intimately-familiar-with-the-net-framework/446757#4467570Answer by John Dunagan for Best book to get intimately familiar with the .NET framework?John Dunagan2009-01-15T13:41:52Z2009-01-15T13:41:52Z<p>If you can't find the Framework info online that you're after, search for .NET 3.5 Framework (or change the version to the Framework you're hunting down) at any online bookseller you prefer, and you'll soon drown in the number of titles.</p>
<p>If you're looking to certify in the Framework, the 70-536 study guide (which IS the Framework exam) from MS is fairly thorough. It might even be helpful if you're not looking to certify, as it does contain the walkthroughs.</p>
http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446745#4467450Answer by John Dunagan for How do you write code at home?John Dunagan2009-01-15T13:37:38Z2009-01-15T13:37:38Z<p>Attend the INETA (<a href="http://www.ineta.org" rel="nofollow">www.ineta.org</a>) User Group Meeting in your area. If you don't have one, find 5-10 other MS geeks and start one. Not only will it enhance your skill, but they draw among the attendees at the end of the meeting for stuff like that.</p>
http://stackoverflow.com/questions/446673/how-do-i-manage-conflict-in-the-workplace/446693#4466932Answer by John Dunagan for How do I manage conflict in the workplace?John Dunagan2009-01-15T13:22:58Z2009-01-15T13:22:58Z<p>I'd ask yourself a question: does the leadership on said dev team participate in the trashfest? </p>
<p>If so, you could bring it up to them (tactfully), perhaps by starting an "are you aware of anything I could be doing to improve my quality at work?" type of conversation. </p>
<p>If they don't, then you still have grounds to point it out, and to (again, respectfully) raise an issue.</p>
<p>As long as it's only about improving you, making life easier on the team, and retaining people (presuming others on your team have had enough and might be seeking greener pastures), and not about "waaah! Jimmy thinks I suck at obfuscation/whatever!", you should be good to go.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/443445/find-out-what-sites-are-powered-by/443519#4435190Answer by John Dunagan for Find out what sites are powered byJohn Dunagan2009-01-14T16:03:56Z2009-01-14T16:03:56Z<p>eCommerce enterprise probably isn't too extroverted about broadcasting on sites that their technology is being used, since it opens an additional security vector. I have no way to verify that, it's just a guess.</p>
<p>That said, looking around in the source code helps if you know what to look for. You can also ask the proprietor/tech contact for the site.</p>
http://stackoverflow.com/questions/436661/css-column-overlap-everywhere-but-ie-and-firefox-3/436945#4369450Answer by John Dunagan for CSS Column Overlap everywhere BUT IE and Firefox 3John Dunagan2009-01-12T20:40:23Z2009-01-12T20:40:23Z<p>In addition to savageguy's right-on-point advice, the image you have in the page (your picture, etc.) to the left is a fixed width. This is why, when the browser is re-sized, that 80% suddenly becomes too wide.</p>
<p>On column2, setting a left margin of the width of the image + the amount of separation you want (for example, 160 should work, but you can play with it), then making the width of the column2 100% (of the remaining width) should prevent your overlap.</p>
<p>[Edit: Plan B also offers a very robust solution.)</p>
http://stackoverflow.com/questions/428368/ie6-css-trouble/428399#4283995Answer by John Dunagan for IE6 CSS TroubleJohn Dunagan2009-01-09T15:06:59Z2009-01-09T15:06:59Z<p><a href="http://positioniseverything.net" rel="nofollow">positioniseverything.net</a> is your friend. Since I've long ago left that world (thank God!), I don't envy you, but the problem is usually double padding, esp. if your floated boxes aren't lining up ("dropping").</p>
<p>You can hack IE6 with <code>width:30px; _width: 20px;</code> in your stylesheet, where the _ rule at the end is the IE6 'adjustment' you wish to make. That works for all the rules, across the board.</p>
<p>But every time I had a problem, it was usually down to double-padding horizontally, which really harfs floated divs in IE6.</p>
<p>Good luck. Like I said, I do not envy you in the slightest. IE6 is a plague which must be eradicated.</p>
http://stackoverflow.com/questions/428280/css-round-cornered-div-on-hover/428360#4283601Answer by John Dunagan for css : round cornered div on hoverJohn Dunagan2009-01-09T14:57:21Z2009-01-09T14:57:21Z<p>Part of the problem you might be having lies in the fact that in most implementations of CSS (and the browser's implementation of that technology), a div doesn't have a :hover method that you can attach style rules to.</p>
<p>As Antony mentioned, jQuery might be able to get around this. </p>
<p>How I would attack it (since I haven't explored jQuery) is to set your a tag (which <em>does</em> have a hover method) to display:block, with all of the attendant rules you would set as if it were a div, make it expand to fill the containing div, and then of course, add your rounded corner rules to the hover.</p>
<p>Another way is to surround your div with the a tag, but then again, you're still setting display:block, background and other rules that don't really belong in a.</p>
<p>This is all a brutal abuse of the syntax, so back up your work before trying anything I suggest.</p>
<p>Good luck - it would probably be easier to just keep it rounded on the div all the time, and think of something else you can do to call out a hover effect.</p>
http://stackoverflow.com/questions/279996/what-is-the-worst-software-idea-youve-had/422454#4224542Answer by John Dunagan for What is the worst software idea you've had?John Dunagan2009-01-07T22:27:44Z2009-01-07T22:27:44Z<p>Digital Valet for the PC XT. View your wardrobe in beautiful 16-color resolution. Make choices about how to dress based on this information.</p>
http://stackoverflow.com/questions/421205/css-performance-issues/422434#4224340Answer by John Dunagan for CSS Performance issuesJohn Dunagan2009-01-07T22:24:37Z2009-01-07T22:24:37Z<p>Most likely, the CSS file is not choking the site quite so much as trips to the server, complex calc, etc. might. But if it is:</p>
<ul>
<li><p>There's an art to writing a lightweight-but-effective css file system that is ever-evolving, to say the least. Effectively using classes and IDs to take advantage of the cascade, for example, can be tough, especially when the project evolves over time, or if the GUI writing it gets swapped out several times over the course of the lifecycle.</p></li>
<li><p>For every legacy browser you have to support, it adds a performance hit, especially if you're using hacks to get it done. Those can be tricky, especially if layered upon one another. Conditional comments are similar - the browser has to decipher which rules it follows, and read through <em>everything</em> before it renders.</p></li>
<li><p>Going full-size image when you could tile or set a color on a background is a drag on siteload, as well.</p></li>
<li><p>(Gratuitous shot) IE can take a long time to misrender your styles and elements.</p></li>
</ul>
http://stackoverflow.com/questions/379093/what-would-the-best-approach-to-follow-to-learn-css/379109#3791092Answer by John Dunagan for What would the best approach to follow to learn CSS?John Dunagan2008-12-18T20:18:57Z2008-12-18T20:18:57Z<p>You need to do two things:</p>
<ul>
<li><p>Learn CSS and the "separate form from function" way of doing things.</p></li>
<li><p>Learn what your limitations are in using ASP.Net/Visual Studio to do things the s3f way.</p></li>
</ul>
<p>Your project spec and leaders will help you with what is acceptable or not in your project.</p>
<p><a href="http://www.wrox.com/WileyCDA/WroxTitle/Professional-ASP-NET-2-0-Design-CSS-Themes-and-Master-Pages.productCd-0470124482.html" rel="nofollow">This book</a> will help you with all of it once you know that.</p>
http://stackoverflow.com/questions/364730/help-with-positioning-logo-navigation-links/364737#3647370Answer by John Dunagan for Help with positioning logo/navigation linksJohn Dunagan2008-12-13T03:08:07Z2008-12-13T03:08:07Z<p>Bottom left? If so - start by setting <code>clear: both;</code> on your #nav block.</p>
<p>Other than that, I don't really understand your question - can you make a jpg of how you'd like it to look?</p>
http://stackoverflow.com/questions/363465/how-do-i-get-over-my-fears-of-in-my-asp-net-mvc-markup/364728#3647280Answer by John Dunagan for How do I get over my fears of <% %> in my ASP.Net MVC markup?John Dunagan2008-12-13T02:58:59Z2008-12-13T02:58:59Z<p>If you're talking about the HTML from rendered controls, I'm afraid it doesn't get any better just because you've got a nice standards-based wrapper around your View in MVC. Without adapted controls, the output is still circa-1995 crappy nested table code.</p>
<p>Thanks, Microsoft!</p>
http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalities/364704#3647043Answer by John Dunagan for Why do programmers have such ridiculously prickly personalities? John Dunagan2008-12-13T02:34:11Z2008-12-13T02:34:11Z<p>Programmers are as different as most people. For every one who's a prick, or a curmudgeon, you'll find others who are social, extroverted, and well-adjusted. My shop, for example, has the full spectrum.</p>
<p>That said, programmers are also like everyone else in that how they treat you, is usually a direct reflection on how you (or others) have treated them.</p>
<p>I'm also very interested in the converse of this question: are executives evil at birth, or does every MBA program come with Sith Lord training?</p>
http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/364135#3641351Answer by John Dunagan for What are the best programming articles?John Dunagan2008-12-12T21:04:40Z2008-12-12T21:04:40Z<p>Anything in <a href="http://www.hanselminutes.com" rel="nofollow">Hanselminutes</a>, or <a href="http://www.hanselman.com" rel="nofollow">Scott's Blog</a>. Saved my ass ongoing quite a few times.</p>
http://stackoverflow.com/questions/363410/visual-studio-web-design/363438#3634380Answer by John Dunagan for Visual Studio Web DesignJohn Dunagan2008-12-12T17:08:19Z2008-12-12T17:08:19Z<p>My buddy Jacob Sanford has a book out you should look at:</p>
<p><a href="http://www.wrox.com/WileyCDA/WroxTitle/Professional-ASP-NET-2-0-Design-CSS-Themes-and-Master-Pages.productCd-0470124482.html" rel="nofollow">Professional ASP.Net Design</a></p>
http://stackoverflow.com/questions/1185980/how-do-i-build-my-website-in-firefox/1186059#1186059Comment by John Dunagan on How do I build my website in Firefox?John Dunagan2009-07-27T03:49:54Z2009-07-27T03:49:54ZThis only works well if your site is exposable to the browsershots crawler, which may not work well for sites that aren't ready to be crawled, such as embryonic initial dev.http://stackoverflow.com/questions/474977/visual-studio-2008-on-windows-7-beta/1180626#1180626Comment by John Dunagan on Visual Studio 2008 on Windows 7 betaJohn Dunagan2009-07-27T02:33:38Z2009-07-27T02:33:38ZIt took 24 less GB to install than Vista Ultimate, too.http://stackoverflow.com/questions/866820/visual-studio-forgets-window-settings-and-makes-a-mess/985532#985532Comment by John Dunagan on Visual studio forgets window settings and makes a messJohn Dunagan2009-07-27T02:22:55Z2009-07-27T02:22:55ZSo what did you do to solve ithttp://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field/775859#775859Comment by John Dunagan on Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-23T03:57:55Z2009-04-23T03:57:55ZI get the appropriate values.http://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field/775879#775879Comment by John Dunagan on Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-22T16:21:39Z2009-04-22T16:21:39ZNo, that didn't. Date comes back with the short date string, and I can't add any time of day to it.http://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field/775879#775879Comment by John Dunagan on Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-22T15:10:17Z2009-04-22T15:10:17ZWould it work if I turned the SQL DB field into a Date instead of a DateTime?
http://stackoverflow.com/questions/777011/text-not-showing-up-as-hyperlink-css-issue/777137#777137Comment by John Dunagan on Text not showing up as hyperlink - CSS issue?John Dunagan2009-04-22T13:18:48Z2009-04-22T13:18:48ZDing! I was wondering. Firebug didn't want to even inspect it.http://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field/775879#775879Comment by John Dunagan on Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-22T12:53:36Z2009-04-22T12:53:36ZSo 'date' does what I'm expecting datetime to do? If so, why isn't datetime coming out of Eval as a shortDateString?http://stackoverflow.com/questions/775739/eval-strips-time-segment-of-a-sql-datetime-field/775859#775859Comment by John Dunagan on Eval strips time segment of a SQL DateTime fieldJohn Dunagan2009-04-22T12:52:45Z2009-04-22T12:52:45ZI just posted it. I tried to include the relevant bits.http://stackoverflow.com/questions/765570/calculating-a-t-sql-query-parameter-at-load-timeComment by John Dunagan on Calculating a T-SQL Query Parameter at Load TimeJohn Dunagan2009-04-20T03:51:53Z2009-04-20T03:51:53ZThanks, everybody for your answers. Jose's worked, so I'm going with his, but you all get an uprate.http://stackoverflow.com/questions/49552/what-are-the-ingredients-of-a-great-off-line-tech-group/49569#49569Comment by John Dunagan on What are the ingredients of a great off-line tech groupJohn Dunagan2009-01-16T14:50:56Z2009-01-16T14:50:56ZI LOVE bear. I mean, 'beer.' :Dhttp://stackoverflow.com/questions/357125/do-you-use-google-for-answers-to-put-on-so/357139#357139Comment by John Dunagan on Do you use Google for answers to put on SO?John Dunagan2009-01-15T16:33:51Z2009-01-15T16:33:51ZRep whoring: defined as name-dropping Jon Skeet when by default, Jon Skeet is part of every answer ever on SO, and therefore part of no answer. It's a zen thing. Well done!http://stackoverflow.com/questions/445624/learning-net-if-you-already-know-several-languages/445688#445688Comment by John Dunagan on Learning .NET if you already know several languagesJohn Dunagan2009-01-15T16:11:39Z2009-01-15T16:11:39ZIt says he's got C++. C# is the natural evolution.http://stackoverflow.com/questions/446743/best-book-to-get-intimately-familiar-with-the-net-framework/446751#446751Comment by John Dunagan on Best book to get intimately familiar with the .NET framework?John Dunagan2009-01-15T13:52:29Z2009-01-15T13:52:29Z@Jon: The amazon profile that is linked to sure does a crappy job of explaining what you just did.http://stackoverflow.com/questions/446743/best-book-to-get-intimately-familiar-with-the-net-framework/446751#446751Comment by John Dunagan on Best book to get intimately familiar with the .NET framework?John Dunagan2009-01-15T13:44:00Z2009-01-15T13:44:00ZWas gonna say, at what point does this book go into the classes, methods and properties of the Framework?