User gkrogers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:05:19Zhttp://stackoverflow.com/feeds/user/54501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812173/call-a-method-on-a-class-or-pass-as-a-parameter-to-another-class-c/1812190#18121900Answer by gkrogers for Call a method on a class or pass as a parameter to another class? C#gkrogers2009-11-28T10:25:35Z2009-11-28T10:25:35Z<p>Personally, I would put the Print method in the Job class. If you create a separate PrintWidget class, it will have to know all about the Job class. Anyway, if it turns out that you do need or want a PrintWidget in future, you can always create it then and refactor the Job class's Print method over to it.</p>
http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1804039#18040393Answer by gkrogers for How do I exclude Weekend days in a SQL Server query?gkrogers2009-11-26T14:39:26Z2009-11-26T14:45:27Z<p>Assuming you're using SQL Server, use DATEPART with dw:</p>
<pre><code>SELECT date_created
FROM your_table
WHERE DATEPART(dw, date_created) NOT IN (1, 7);
</code></pre>
<p><strong>EDIT:</strong> I should point out that the actual numeric value returned by DATEPART(dw) is determined by the value set by using SET DATEFIRST:<BR>
<a href="http://msdn.microsoft.com/en-us/library/ms181598.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms181598.aspx</a></p>
http://stackoverflow.com/questions/1791390/web-app-keeping-trace-of-the-version-of-the-application-in-database/1803771#18037710Answer by gkrogers for Web-App : Keeping trace of the version of the application in database ?gkrogers2009-11-26T13:49:30Z2009-11-26T13:49:30Z<p>Assuming there are no compelling reasons to go with one approach or the other, I think I'd go with keeping them in the database.</p>
http://stackoverflow.com/questions/1800698/query-to-check-index-on-a-table/1803342#18033420Answer by gkrogers for query to check index on a tablegkrogers2009-11-26T12:12:47Z2009-11-26T12:19:19Z<p>On SQL Server, this will list all the indexes for a specified table:</p>
<pre><code>select * from sys.indexes
where object_id = (select object_id from sys.objects where name = 'MYTABLE')
</code></pre>
<p>This query will list all tables without an index:</p>
<pre><code>SELECT name
FROM sys.tables
WHERE OBJECTPROPERTY(object_id,'IsIndexed') = 0
</code></pre>
<p>And this is an interesting MSDN FAQ on a related subject:<BR>
<a href="http://msdn.microsoft.com/en-us/library/ms345522.aspx" rel="nofollow">Querying the SQL Server System Catalog FAQ</a></p>
http://stackoverflow.com/questions/1803206/duplicate-line-command-in-visual-studio-2005/1803268#18032682Answer by gkrogers for Duplicate line command in Visual Studio 2005?gkrogers2009-11-26T11:57:14Z2009-11-26T11:57:14Z<p>There isn't a built-in command (afaik), but Christophe Herreman explains how to create a macro to do it here: <a href="http://www.herrodius.com/blog/52" rel="nofollow">"Duplicate line command for Visual Studio"</a></p>
http://stackoverflow.com/questions/1802848/xcopy-to-remote-server/1802924#18029240Answer by gkrogers for XCOPY to remote servergkrogers2009-11-26T10:41:01Z2009-11-26T10:41:01Z<p>I think you want:</p>
<pre><code>XCOPY c:\myproject\build\*.* \\server\\build\ /S /E
</code></pre>
http://stackoverflow.com/questions/1797683/join-over-multiple-columns/1797977#17979770Answer by gkrogers for JOIN over multiple columns?gkrogers2009-11-25T16:04:39Z2009-11-25T16:04:39Z<p>I think you just need to add an OR to your JOIN clause:</p>
<pre><code>SELECT i.Id, SUM(weight)
FROM @IDs i JOIN myTable s1 ON i.Id=s1.id1 OR i.Id=s1.id2
GROUP BY i.Id
</code></pre>
http://stackoverflow.com/questions/1797260/c-converting-html-to-jpg/1797282#17972821Answer by gkrogers for c# converting HTML to JPGgkrogers2009-11-25T14:33:30Z2009-11-25T14:33:30Z<p>Have you tried saving it as picture.png?</p>
http://stackoverflow.com/questions/1796890/stored-procedures-not-that-fast/1796933#17969330Answer by gkrogers for Stored Procedures not that fast?gkrogers2009-11-25T13:32:32Z2009-11-25T13:32:32Z<p>You might find this Q&A useful:
<a href="http://stackoverflow.com/questions/59880/are-stored-procedures-more-efficient-in-general-than-inline-statements-on-moder">http://stackoverflow.com/questions/59880/are-stored-procedures-more-efficient-in-general-than-inline-statements-on-moder</a></p>
http://stackoverflow.com/questions/1589643/mysql-two-table-select-without-common-values/1589667#15896670Answer by gkrogers for MYSQL: Two Table SELECT without common valuesgkrogers2009-10-19T16:19:31Z2009-10-19T16:19:31Z<p>Try SELECT * FROM table1 UNION SELECT * FROM table2</p>
http://stackoverflow.com/questions/1345727/retrieve-clients-from-projects-user-belongs-to/1345996#13459960Answer by gkrogers for Retrieve Clients from Projects User Belongs togkrogers2009-08-28T09:39:32Z2009-08-28T09:39:32Z<p>Firstly, if users can have multiple projects, you'll need a Project-Users table.</p>
<p>Given that, you can get what you want using either of these pieces of SQL:</p>
<pre><code>select distinct c.id from
clients c
join projectclients pc on c.id=pc.clientid
join projects p on pc.projectid=p.id
join projectusers pu on p.id=pu.projectid
join users u on u.id=pu.userid
where u.id=3
select distinct c.id from
clients c join projectclients pc on c.id=pc.clientid
where pc.projectid in
(select projectid from
users u join projectusers pu on u.id=pu.userid
where u.id=3)
</code></pre>
http://stackoverflow.com/questions/1301103/spurious-user-defined-type-not-defined-error-in-microsoft-word-vba0Spurious "User-defined type not defined" error in Microsoft Word VBAgkrogers2009-08-19T16:28:50Z2009-08-24T19:55:21Z
<p>I have a Microsoft Word template with some code and some references, that has been working fine for months but has just started throwing up a spurious "User-defined type not defined" error whenever I open it or try to compile it.</p>
<p>I know it's a spurious error because I haven't made any significant changes to the code. In fact, I've rolled the code back to the last deployed version (which I know works fine) and I still get the error. I've also commented out all the code in the template and I still get the error. I've also removed and re-added all references (same error), and removed all the references and added them back, one by one, until the resultant compile errors are resolved, at which point I'm left with the spurious "User-defined type not defined" error. (I'm going to call this a UDTND error, from now, to avoid driving you all mad.) I think the error started popping up after I rebooted my PC. It only happens with this template, but I don't see how it can be anything to do with this template.</p>
<p>Interestingly, the error is subtly different from a genuine UDTND error in the following ways:</p>
<ul>
<li><p>No code is highlighted when the error is displayed.</p></li>
<li><p>The dialog is titled "Microsoft Visual Basic", and contains the error message but, unlike a real UDTND error, doesn't contain the text "Compile error:";</p></li>
<li><p>It happens when the template is opened, not just when it's compiled (at least, I think that's different from a normal error).</p></li>
</ul>
<p>I've tried Googling it but I just get a bazillion results from novice developers asking why they get this error, with responses telling them that they either need to declare the missing type, correct the spelling of the offending variable type, or add a reference to a missing library. I've been banging my head against my screen all afternoon, and that's helped about as much as all the other things I've tried (i.e. not at all). I have a feeling that this is something to do with a messed-up reference, but afaict they're all fine, and I've removed and re-added them, which I would expect to resolve that sort of problem.</p>
<p>Any ideas...?</p>
http://stackoverflow.com/questions/517968/what-questions-should-you-ask-your-newly-appointed-manager/517988#5179882Answer by gkrogers for What questions should you ask your newly appointed manager? gkrogers2009-02-05T21:22:01Z2009-02-05T21:22:01Z<p>What are you going to do to help me be more productive?</p>
http://stackoverflow.com/questions/510461/validating-data-in-database-sql-vs-code/510471#5104710Answer by gkrogers for validating data in database: sql vs codegkrogers2009-02-04T08:07:17Z2009-02-04T08:07:17Z<p>I would check the locked flag in code and then (assuming the record isn't locked) run the update query, setting the locked flag in the query as well. That way it can be wrapped in a transaction and committed/rolled back all at once.</p>
http://stackoverflow.com/questions/501227/drop-down-menu-needs-to-display-over-everything-but-it-is-underneath-a-certain-d/501236#5012366Answer by gkrogers for drop down menu needs to display over everything, but it is underneath a certain div.gkrogers2009-02-01T17:44:02Z2009-02-03T10:33:51Z<p>Have you tried setting the <a href="http://www.w3schools.com/Css/pr_pos_z-index.asp" rel="nofollow">z-index</a> of the picture that's currently obscuring your menu to, say, 0? Have you got a "live" test URL we can look at? Alternatively, on the basis that IE is treating z-index incorrectly, have you got the leeway to position your drop-down menu's HTML after the other elements in the page, thereby bypassing z-index?</p>
<p><strong>EDIT:</strong> Ah, apparently there's a bug. This <a href="http://www.webmaster-talk.com/css-forum/47892-z-index-ignored-by-ie.html" rel="nofollow">link</a> might explain, if not actually help...</p>
<p>Quote from MrTazz:</p>
<blockquote>
<p>When running some special JavaScript
it magicaly puts the div in the
background. Uppdate the div and it
comes back farward.</p>
</blockquote>
<p>So maybe try updating the drop-down menu div somehow, just before the page is displayed?</p>
<p><strong>EDIT:</strong>
From Brad's comment, copied here for the edification of future readers: "This helped me out: <a href="http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/" rel="nofollow">http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/</a> I set #header to have a z-index of 2, and #content to have a z-index of 1." – Brad (5 hours ago)</p>
<p>So, to summarise: there's a z-index bug in IE 6/7. To get around it, explicitly set the z-index for the element(s) that is/are appearing in front of your menu to a low number (e.g. 1), and set the z-index for your menu's container to a slightly higher number (e.g. 2).</p>
http://stackoverflow.com/questions/502669/technical-white-paper-how-to-write-one/502723#5027230Answer by gkrogers for Technical White paper: How to write onegkrogers2009-02-02T10:00:42Z2009-02-02T10:59:18Z<p><a href="http://www.stelzner.com/copy-HowTo-whitepapers.php" rel="nofollow">How to Write a White Paper – A White Paper on White Papers</a><br />
The author of that piece has also written a book:<br />
<a href="http://rads.stackoverflow.com/amzn/click/0977716937" rel="nofollow">Writing White Papers: How to Capture Readers And Keep Them Engaged</a> </p>
http://stackoverflow.com/questions/501685/how-can-i-justify-cost-benefit-taking-the-time-to-setup-a-proper-development-en/501804#5018040Answer by gkrogers for How can I justify (cost-benefit) taking the time to setup a proper development environment (Subversion)?gkrogers2009-02-01T23:06:30Z2009-02-01T23:06:30Z<p>Could you do a risk analysis? This is an accepted project management discipline and essentially involves enumerating the risks, making an attempt to quantify them in terms of likelihood and impact, and identifying possible mitigating measures. That approach should work for source control at least, unless your boss wilfully ignores the risks, which would be very... courageous of him. :-)</p>
<p>If a source code disaster does occur yuour boss bis going to look pretty stupid (and reckless) and you're going to look prescient. Peter's suggesiton is good as well - set it up for yourself and then, when someone loses some source code, or some changes, casually say "Oh, I did that recently but I just re-fetched the previous version from source control and only lost about 20 minutes' work. Do you want me to set you up with a login?")</p>
http://stackoverflow.com/questions/498900/dealing-with-a-career-rut-in-well-paid-support-job/498919#4989190Answer by gkrogers for Dealing with a Career rut in well paid support jobgkrogers2009-01-31T14:39:26Z2009-01-31T14:45:39Z<p>Save as much as you can while you can, figure out what you actually want to do, then figure out how to convert your savings into your new life (e.g. training course(s), working for little/no money as a sort of apprenticeship, giving up work to teach yourself new skills at home, etc.)</p>
<p>The difficult thing is figuring out what you actually want to do, but money will make that easier as well - you can try things out to see if you like them, without having to get paid. Off the top of my head I can't think of a career that <strong>just</strong> involves public speaking - most of them seem to require you to be an expert in the subject as well, so you'd have to pick a field as well, and become expert in that. Presumably a field that you will enjoy becoming an expert in.</p>
<p>The rut you're stuck in seems to be quite a deep ditch between "bored" and "stressed" therein lies your problem. Personally, I think you should err on the stress side; maybe go back into training?</p>
http://stackoverflow.com/questions/498865/how-do-i-check-constraints-between-two-tables-when-inserting-into-a-third-table-t/498904#4989040Answer by gkrogers for How do I check constraints between two tables when inserting into a third table that references the other two tables?gkrogers2009-01-31T14:31:26Z2009-01-31T14:31:26Z<p>Either: </p>
<ul>
<li>make the EmployeeID column the Primary Key of Employee (and possibly an auto-id) and store the EmployeeID in the WorkItem record as a foreign key, instead of storing the Employee and Customer IDs in WorkItem. You can retrieve a WorkItem's Customer details by joining to the Customer table via the Employee table.</li>
</ul>
<p>Or: </p>
<ul>
<li>make the WorkItem's EmployeeID and CustomerID columns a composite foreign key to Employee.</li>
</ul>
<p>I favour the first approach, personally.</p>
http://stackoverflow.com/questions/498577/selecting-multiple-values-different-tables/498596#4985961Answer by gkrogers for Selecting multiple values different tablesgkrogers2009-01-31T10:03:17Z2009-01-31T13:29:54Z<p>Because the tables aren't related you'll have to use the UNION operator (as karlis says), rather than JOIN. But as you apparently want to handle products and services together (at least some of the time) you're probably better off putting them into one table and adding a column to differentiate between them, like so: </p>
<pre><code>productsandservice [need better name]
{
id,
name,
desc,
isaservice
}
</code></pre>
http://stackoverflow.com/questions/496935/ms-sql-update-query-gotta-be-something-simple/496941#4969419Answer by gkrogers for MS SQL update Query, gotta be something simplegkrogers2009-01-30T19:47:31Z2009-01-30T19:47:31Z<p>Try this:</p>
<pre><code>UPDATE tblCheckbook
SET CheckColor = 'Blue'
</code></pre>
http://stackoverflow.com/questions/489902/is-it-possible-to-host-more-than-one-website-on-iis-5-10Is it possible to host more than one website on IIS 5.1?gkrogers2009-01-28T23:37:21Z2009-01-29T12:53:42Z
<p>I'm running WinXP Pro SP3 and IIS 5.1 on my home dev machine. As far as I can tell IIS 5.1 only allows me to host one website, which is a problem because I'm working on three at the moment. Is that right, and, if so, is there any way around that limitation?</p>
<p><strong>EDIT:</strong> This is just for dev/test purposes - I don't want to actually host any live websites, or even let anybody apart from me access them.</p>
http://stackoverflow.com/questions/491447/how-do-you-fix-queries-that-only-run-slow-until-theyre-cached/491478#4914780Answer by gkrogers for How do you fix queries that only run slow until they're cached.gkrogers2009-01-29T12:47:05Z2009-01-29T12:47:05Z<p>From MSDN:<br />
"Use <a href="http://msdn.microsoft.com/en-us/library/ms187762.aspx" rel="nofollow">DBCC DROPCLEANBUFFERS</a> to test queries with a cold buffer cache without shutting down and restarting the server."</p>
http://stackoverflow.com/questions/484355/does-it-make-sense-to-rewrite-perl-and-shell-scripts-in-java/484382#48438220Answer by gkrogers for Does it make sense to rewrite Perl and shell scripts in java?gkrogers2009-01-27T17:36:23Z2009-01-29T10:48:18Z<p>The trouble is, your Gut reaction might be right, but that doesn't mean your manager is necessarily wrong - he probably has very good reasons for wanting it all done in java. Not least, if you fall under a bus, finding a replacement who knows java, perl and bash is going to be a lot harder than finding someone who knows java. And that's leaving aside the "they can only be run on a PC with cygwin installed" issue. And in all likelihood, performance isn't as big an issue as you think it is.</p>
<p>Having said that, your best bet is to spend a bit of time estimating the time it will take to port them all to java, so he can make an informed decision. And while you're at it, estimate how long it would take to port the bash scripts to perl <strong>and</strong> document them. Then let him decide. Remember - he doesn't get to spend the majority of his time coding, like you do, so it's only fair that he gets to make some decisions instead.</p>
<p>If he decides to proceed with the java option, port one of the scripts as well as you can, then report back with the two versions and, if you're right about the concision of the perl/bash scripts, you should be able to get some mileage from examining the two versions side by side.</p>
<p><strong>EDIT:</strong> MCS, to be honest, it sounds to me as if those scripts are better implemented in perl and/or bash, rather than java, but that's not really the point - the point is how do you demonstrate that to your manager. If you address that, you address both the "gut reaction" question (btw, here's a tip - start referring to your gut reactions as "judgement, based on experience") and the "best way to present my case" question.</p>
<p>Now, the first thing you have to realise is that your manager is (probably) not going down this path just to piss you off. He almost certainly has genuine concerns about these scripts. Given that they're probably genuine concerns (and there's no point in going any further if they're not - if he's made his mind up to do this thing for some political reason then you're not going to change his mind, no matter what, so just get on with it and add it to your CV) it follows that you need to provide him with information that addresses his concerns if you're going to get anywhere. If you can do that then you're more than halfway to getting your own way.</p>
<p>So, what are his concerns? Based on your post, and on my judgement and experience :-) I'd say they are: </p>
<ul>
<li>maintainability</li>
<li>that's it, just maintainability</li>
</ul>
<p>I would also guess that his concerns are <strong>not</strong>: </p>
<ul>
<li>performance</li>
</ul>
<p>I might be wrong about this last one, of course; in the last place I worked we had a SQL Server performance problem to do with replication that impacted the business's ability to provide customer support, so performance was an issue, so we addressed it. But generally speaking performance isn't as much of an issue as programmers think. If he's actually told you that performance is an issue, then factor it in. But if he hasn't mentioned it, forget it - it's probably only you that thinks the fact that these scripts run faster in perl/bash than they probably will in java matters at all.</p>
<p>So, maintainability. This comes down to answering the question "who will maintain these scripts if MCS falls under a bus?" and the supplementary question "will that cause me (i.e. your manager) problems?" (Aside: don't get hung up on the whole bus thing. "Falling under a bus" is a useful and diplomatic shorthand for all sorts of risks, e.g. "what happens if someone lures him away with a salary my company can't match?", "what happens if he decides to emigrate to Bermuda?", "what happens if I want to fire him?", "what happens if I want to promote him?", and, of course, "what happens if just he stops turning up for work one day for some unknown, possibly bus-related, reason?")</p>
<p>Remember, it's your manager's job to consider and mitigate these risks.</p>
<p>So, how to do that?</p>
<p>First, demonstrate how maintainable these scripts actually are. Or at least how maintainable they can be. Document them (in proper documents, not in the code). Train a colleague to maintain them (pick someone who would like to acquire/improve their perl and bash skills, and who your manager trusts). Refactor them to make them more readable (sacrificing performance and clever scripting tricks if necessary). If you want to continue using bash, create a document that provides step-by-step instructions for installing cygwin and bash. Regardless, document the process of installing perl, and running the scripts.</p>
<p>Second, pick one of the scripts and port it to java. Feel free to pick the script that best demonstrates the advantages of perl/bash over java, but <strong>do the best job you can of porting it.</strong> Use java.util.regex to do the same clever things you do in your perl. Document it to the standard that other in-house java utilities are documented. If performance is actually a factor, measure its performance relative to the perl/bash script.</p>
<p>Third, having been through that exercise, be honest with yourself about their relative maintainability. Ask the guy you trained what he thinks. If you still think the perl/bash scripts are more or less as maintainable as java versions would be, estimate the work involved in porting the remaining scripts to java as accurately as you can (you'll be able to do this pretty accurately now, because you'll have actually ported one). Then take the comparative scripts and the documentation and the estimates (and the performance figures, if appropriate) to your manager and go through them with him. Present your counter-proposals (a. leave them in perl and bash but document them and train a colleague, and b. port the bash scripts to perl, document them and train a colleague).</p>
<p>Finally, let your manager weigh up all the information and decide, and abide by his decision. In fact, don't just abide by his decision, accept the fact that he might be right. Just because you know more about perl/bash/java than him doesn't mean you necessarily know more about managing the team/department than he does. And if his decision is to stick with perl/bash, or port to perl, rejoice! Because you have not only got your own way, you have gone up in your manager's estimation and learned an invaluable lesson along the way.</p>
http://stackoverflow.com/questions/488659/get-mysql-columns-width/488734#4887340Answer by gkrogers for Get MySQL columns width ?gkrogers2009-01-28T18:24:35Z2009-01-28T18:24:35Z<p>You need a function that will calculate the width of a string, given (as Mike Houston says) the font (face, size, etc) that it will be rendered in. It's nothing to do with MySQL, and everything to do with printing/rendering text, so look to your PDF library. Or, possibly, your operating system's printing/graphics library.</p>
http://stackoverflow.com/questions/487973/inheriting-applications-at-a-new-job/487985#48798520Answer by gkrogers for Inheriting applications at a new job...gkrogers2009-01-28T15:14:26Z2009-01-28T15:14:26Z<p>If there are standards evident in the code, you should stick to them. If there aren't, start introducing your own.</p>
http://stackoverflow.com/questions/487441/webservice-and-polling/487479#4874790Answer by gkrogers for WebService and Pollinggkrogers2009-01-28T12:43:08Z2009-01-28T12:43:08Z<p>Some web services I've worked with return a "please try again in " xml message when they can't respond immediately. I realise that this is just a refinement of the polling technique, but if your server can determine at the time of the request what the likely delay is going to be, it could tell the client that and then forget about it, leaving the client to ask again once the polling interval has expired.</p>
http://stackoverflow.com/questions/484676/who-cares-as-long-as-the-result-is-ok/484689#4846891Answer by gkrogers for Who cares... as long as the result is ok?gkrogers2009-01-27T18:49:20Z2009-01-27T22:04:21Z<p>I think these days most people agree that, assuming it works correctly, readability is the most important consideration. There are exceptions, of course - some apps have to run as fast as possible, and some apps can <strong>never</strong> be allowed to crash, but generally speaking it's readability.</p>
http://stackoverflow.com/questions/484278/log-off-user-from-win-xp-programmatically-in-c/484360#4843601Answer by gkrogers for Log off user from Win XP programmatically in C#gkrogers2009-01-27T17:29:53Z2009-01-27T17:29:53Z<p>Cerebrus is right. There's more info here:
<a href="http://www.c-sharpcorner.com/UploadFile/thiagu304/desktopfunctions02112007140806PM/desktopfunctions.aspx" rel="nofollow">Lock, Logoff, Reboot, Shutdown, Hibernate, Standby in .Net</a></p>
http://stackoverflow.com/questions/483945/vbscript-optimization-how-to-get-faster-file-writing/483993#4839930Answer by gkrogers for vbscript optimization : how to get faster file writinggkrogers2009-01-27T16:08:23Z2009-01-27T16:13:36Z<p>If you're doing a lot of small writes then refactoring the checks for FolderExists and FileExists out will help a bit. Maybe try to write to the file, trapping any errors, and check for FolderExists and FileExists in the error handler and create them if necessary?</p>
<p>It'll be quicker to output one large string rather than several small ones, but you have to balance that against the possibility of losing log entries if your program crashes.</p>
<p>Memory shouldn't be a problem unless you're writing a <strong>humungous</strong> string to the file, and probably not even then.</p>
<p>Because you're appending to the file, the longer the log file gets the longer the write will take, because (AFAIK) the entire file has to be rewritten each time. That's another reason for writing longer strings less frequently.</p>
<p>Could you use Windows' Event Log instead?</p>
http://stackoverflow.com/questions/1805671/how-to-implement-a-haschildren-select-statement-in-sql/1805776#1805776Comment by gkrogers on How to implement a "hasChildren" SELECT statement in SQL?gkrogers2009-11-27T06:27:46Z2009-11-27T06:27:46Z+1 - these are valid concerns, whether it's technically denormalisation or not.http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1804095#1804095Comment by gkrogers on How do I exclude Weekend days in a SQL Server query?gkrogers2009-11-26T15:16:33Z2009-11-26T15:16:33ZNice refinement: +1! :-)http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1804039#1804039Comment by gkrogers on How do I exclude Weekend days in a SQL Server query?gkrogers2009-11-26T15:15:30Z2009-11-26T15:15:30ZExcellent tip: +1! :-)http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1803996#1803996Comment by gkrogers on How do I exclude Weekend days in a SQL Server query?gkrogers2009-11-26T14:42:57Z2009-11-26T14:42:57ZOf course, this will only work in English-speaking countries.http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query/1804014#1804014Comment by gkrogers on How do I exclude Weekend days in a SQL Server query?gkrogers2009-11-26T14:42:26Z2009-11-26T14:42:26ZSQL Server doesn't have a DAYOFWEEK function.http://stackoverflow.com/questions/1797260/c-converting-html-to-jpg/1797289#1797289Comment by gkrogers on c# converting HTML to JPGgkrogers2009-11-26T14:14:09Z2009-11-26T14:14:09ZI think the title is misleading - he was actually trying to download a png over http, given a URL to it, not convert it.http://stackoverflow.com/questions/1798174/datetime-parseexact-formats-questionComment by gkrogers on DateTime.ParseExact formats questiongkrogers2009-11-25T16:57:54Z2009-11-25T16:57:54ZAlternatively, can you add a colon between the hours and the minutes?http://stackoverflow.com/questions/1798174/datetime-parseexact-formats-questionComment by gkrogers on DateTime.ParseExact formats questiongkrogers2009-11-25T16:53:37Z2009-11-25T16:53:37ZCan you not write the hour out with a leading zero if necessary?http://stackoverflow.com/questions/1589643/mysql-two-table-select-without-common-values/1589667#1589667Comment by gkrogers on MYSQL: Two Table SELECT without common valuesgkrogers2009-10-22T09:43:04Z2009-10-22T09:43:04ZYes, I think the number and type of columns has to be the same, and possibly the names/aliases as well. But a UNION query is the way to go.http://stackoverflow.com/questions/498865/how-do-i-check-constraints-between-two-tables-when-inserting-into-a-third-table-t/498904#498904Comment by gkrogers on How do I check constraints between two tables when inserting into a third table that references the other two tables?gkrogers2009-01-31T14:52:26Z2009-01-31T14:52:26ZAh, so a WorkItem always has a Customer but may or may not have an Employee?http://stackoverflow.com/questions/489902/is-it-possible-to-host-more-than-one-website-on-iis-5-1/489931#489931Comment by gkrogers on Is it possible to host more than one website on IIS 5.1?gkrogers2009-01-29T10:30:56Z2009-01-29T10:30:56ZThanks for the info. Looks like a useful utility but I've gone with Jim's solution for now.http://stackoverflow.com/questions/489902/is-it-possible-to-host-more-than-one-website-on-iis-5-1/490049#490049Comment by gkrogers on Is it possible to host more than one website on IIS 5.1?gkrogers2009-01-29T10:29:47Z2009-01-29T10:29:47ZGreat link - works like a charm - cheers!http://stackoverflow.com/questions/483573/what-to-do-with-a-bad-job-reference/483615#483615Comment by gkrogers on What to do with a bad job reference? gkrogers2009-01-28T14:26:48Z2009-01-28T14:26:48ZAh, that's a problem. You don't really have much option but to explain the situation to any prospective employer/recruiter then - they're probably going to find out anyway, and forewarned is disarmed, at least a bit. I'd do what Ric Tokyo says as well.http://stackoverflow.com/questions/483251/a-developers-expectation-with-regards-to-internet-access/483602#483602Comment by gkrogers on A developers expectation with regards to Internet accessgkrogers2009-01-28T14:23:07Z2009-01-28T14:23:07ZWhat you ought to watch out for are any signs that this kind of Theory X management is becoming the norm. For example, not allowing to make or receive personal calls, or requiring you to fill in timesheets accounting for time in 15 minute blocks, but not allowing you book time to admin.http://stackoverflow.com/questions/484248/visual-studio-appears-to-randomly-adopt-american-keyboard-layout/484267#484267Comment by gkrogers on Visual Studio appears to randomly adopt american keyboard layoutgkrogers2009-01-27T17:13:49Z2009-01-27T17:13:49ZExcellent, thanks!