User Schnapple - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T18:48:34Zhttp://stackoverflow.com/feeds/user/2577http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/85019/how-can-you-make-a-web-page-send-to-the-printer-something-different-than-whats-i5How can you make a web page send to the printer something different than what's in the browser window?Schnapple2008-09-17T16:27:12Z2009-12-14T22:01:26Z
<p>Google Maps used to do this bit where when you hit the "Print" link, what would be sent to the printer wasn't exactly what you had on the screen, but rather a differently-formatted version of mostly the same information. </p>
<p>It appears that they've largely moved away from this concept (I guess people didn't understand it) and most websites have a "print version" of things like articles and so forth.</p>
<p>But if you wanted to make a webpage such that a "printer friendly" version of the page is what gets sent to the printer without having to make a separate page for it, how would you do that?</p>
<p><strong>Follow-up</strong>: can you have things be printed that are not rendered on the page? (i.e., hidden from currently being rendered)?</p>
http://stackoverflow.com/questions/1863186/when-evaluating-visual-studio-2010-should-you-install-the-ultimate-version-or-t0When evaluating Visual Studio 2010, should you install the Ultimate version, or the version you think your company is most likely to purchase?Schnapple2009-12-07T21:53:47Z2009-12-07T22:02:05Z
<p>I want to install Visual Studio 2010 Beta 2 and I see several versions - seems they've gone a little nuts with the versions this time around so there's "Professional", "Premium" and "Ultimate".</p>
<p>When it comes to Visual Studio 2008 we went with the Professional edition. I'm not privy to the reasoning but it serves our needs.</p>
<p>On the one hand I figure I should evaluate the Professional edition of Visual Studio 2010 since there's a good chance that's what I'll be using when the thing ships next year. On the other hand, I wonder if I should evaluate the Ultimate version so I can figure out what if any features it has which I could use.</p>
<p>When evaluating Visual Studio 2010, should you install the Ultimate version, or the version you think your company is most likely to purchase?</p>
http://stackoverflow.com/questions/1822996/how-can-i-grab-exclusive-access-to-the-clipboard-for-testing-purposes0How can I grab exclusive access to the clipboard for testing purposes?Schnapple2009-11-30T22:54:29Z2009-12-01T15:24:29Z
<p>I have an app which, long story short, uses the clipboard for part of its operation.</p>
<p>Sometimes though, for reasons I've never 100% nailed down, sometimes the clipboard isn't available. Sometimes the RDC client blocks it, sometimes it doesn't. And it's one of those extremely hard to reproduce when you really need to sorts of deals.</p>
<p>Could one write a little testing program that, while it runs, doesn't allow any other programs to access the clipboard? </p>
http://stackoverflow.com/questions/577904/can-i-read-an-outlook-2003-2007-pst-file-in-c/1813823#18138230Answer by Schnapple for Can I read an Outlook (2003/2007) PST file in C#?Schnapple2009-11-28T21:24:39Z2009-11-28T21:24:39Z<p>I went through and did the refactoring for subfolders</p>
<pre><code> private static IEnumerable<MailItem> readPst(string pstFilePath, string pstName)
{
List<MailItem> mailItems = new List<MailItem>();
Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application();
NameSpace outlookNs = app.GetNamespace("MAPI");
// Add PST file (Outlook Data File) to Default Profile
outlookNs.AddStore(pstFilePath);
string storeInfo = null;
foreach (Store store in outlookNs.Stores)
{
storeInfo = store.DisplayName;
storeInfo = store.FilePath;
storeInfo = store.StoreID;
}
MAPIFolder rootFolder = outlookNs.Stores[pstName].GetRootFolder();
// Traverse through all folders in the PST file
Folders subFolders = rootFolder.Folders;
foreach (Folder folder in subFolders)
{
ExtractItems(mailItems, folder);
}
// Remove PST file from Default Profile
outlookNs.RemoveStore(rootFolder);
return mailItems;
}
private static void ExtractItems(List<MailItem> mailItems, Folder folder)
{
Items items = folder.Items;
int itemcount = items.Count;
foreach (object item in items)
{
if (item is MailItem)
{
MailItem mailItem = item as MailItem;
mailItems.Add(mailItem);
}
}
foreach (Folder subfolder in folder.Folders)
{
ExtractItems(mailItems, subfolder);
}
}
</code></pre>
http://stackoverflow.com/questions/1726000/how-do-i-make-sure-that-an-automatically-closed-window-closes-all-its-spawned-win0How do I make sure that an automatically closed window closes all its spawned windows as well?Schnapple2009-11-12T22:59:20Z2009-11-16T23:04:22Z
<p>I have the following scenario:</p>
<ol>
<li>A user on one our customer's website clicks a link. It performs an automatic signon with their credentials to our site, which is launched in a new window.</li>
<li>User on our site logs out, and is sent to a page which does a JavaScript <code>window.close()</code>, which closes the window. If they were a customer that logged into our site directly then they would go back to the Login page, but being automatically signed on, they have no use for the Login page, so the page automatically closing is better.</li>
</ol>
<p>However sometimes the following happens</p>
<ol>
<li>A user on one our customer's website clicks a link, performs an automatic signon with their credentials to our site, which launches in a new window.</li>
<li>While in our application they click on the "Help" link, which at this time is another popup window.</li>
<li>At some point they log out of our app, which closes that window.</li>
<li>The help window is still open.</li>
<li>The user clicks on a link in the help window.</li>
<li>The user, not being logged in anymore, now goes to a login screen in that help window.</li>
<li>MASS HYSTERIA!</li>
</ol>
<p>So what I'd like to do is ensure that when that original window is closed, it also closes any popup windows it spawns. I figure this can be done in JavaScript but how?</p>
<p><strong>ADDENDUM:</strong> The suggestions below are nice but the problem is the page the user is on when the browser closes is not the same page that spawns the popup, so the handles to the pages are all gone. How can I get the handle to a popup window with a specific name?</p>
http://stackoverflow.com/questions/180624/how-can-i-delete-not-disable-activex-add-ons-in-internet-explorer-7-and-8-beta1How can I delete (not disable) ActiveX add-ons in Internet Explorer (7 and 8 Beta 2)?Schnapple2008-10-07T21:57:49Z2009-11-04T00:19:19Z
<p>I'm developing a solution which uses an ActiveX control (a commercial one which we bought and that I did not develop). I need to develop the proper installation pages to simulate what happens when a user who has never visited the site and does not have the add-on installed comes to the page.</p>
<p>I've found the "Manage Add-Ons" bit in Internet Options and I'm not having any luck.</p>
<p>In IE7, I see an ability to enable or disable any control and a "Delete ActiveX" option, but it's disabled for this particular control.</p>
<p>In IE8 Beta 2, the "Manage Add-Ons" bit has been completely reworked and I no longer see an option to delete the control. Each control has a "Properties" dialog and I can "Remove" it, but the button doesn't appear to do anything (could be related to how "Delete ActiveX" doesn't work for this on in IE7).</p>
<p>It looks like maybe this control is installed in such a way that merely deleting it from IE won't work or isn't allowed, but it's not a control with its own entry on the Add/Remove Programs menu in XP, so I can't uninstall it that way either.</p>
<p>How can I delete/remove (not disable) this ActiveX control in IE so that I can simulate what happens when people come to the site and the ActiveX control hasn't been installed yet? I figure there must be a way to "purge" IE of it.</p>
http://stackoverflow.com/questions/521827/unlocker-equivalent-for-vista644"Unlocker" equivalent for Vista64?Schnapple2009-02-06T19:35:00Z2009-10-27T20:51:16Z
<p>Cedrick Collomb's <a href="http://ccollomb.free.fr/unlocker/" rel="nofollow">Unlocker</a> is one of the most useful utilities I've ever come across - when I come across an issue in compiling that some file is locked I can just right click on the file, click "Unlocker", and it will tell me what has the file (similar to Who Lock Me?) and I can remove the handles, kill the process, whatever. It's really nice.</p>
<p>However it doesn't work in Vista64. I'm not sure if it works in Vista32 but I'm currently running Vista64 at home and soon will be using it at work, too. </p>
<p>Does anyone know of a comparable utility that works in Vista64?</p>
http://stackoverflow.com/questions/1627474/sneaky-seo-solution/1627515#16275150Answer by Schnapple for Sneaky SEO SolutionSchnapple2009-10-26T21:46:20Z2009-10-26T21:46:20Z<p>Google's bots can't and won't run JavaScript, so one thing you can do is have your page's contents be one thing and then on load replace it with JavaScript.</p>
<p>People who have all-Flash sites and don't want to be invisible to Google sometimes use this:
<a href="http://blog.deconcept.com/swfobject/" rel="nofollow">http://blog.deconcept.com/swfobject/</a></p>
<p>it's basically a JavaScript library which does the switcheroo.</p>
<p>But it has problems<br />
- For legitimate usage it means you have to keep your Flash and HTML code in sync.<br />
- For anyone who doesn't have JavaScript enabled it will not work (they'll see the content you intended for the Google crawler).<br />
- As others have pointed out, if you use it for anything other than just making the HTML of your site match the Flash content and Google ever catches on you'll be banished pretty much forever.</p>
<p>But for a site where you have to use all Flash but want Google to see it (and don't have a recent version of Flash, which supposedly nullifies this) you can use it. I've done it before.</p>
http://stackoverflow.com/questions/1627442/better-to-use-stored-procedures-or-sql-in-my-code-for-working-with-data/1627452#16274523Answer by Schnapple for Better to use Stored Procedures or SQL in my code for working with data?Schnapple2009-10-26T21:34:11Z2009-10-26T21:34:11Z<p>Of those two, Stored Procedures all the way, if for no other reason than it's easier to change a stored procedure in production when it's broken than to deploy new code. And as kristian points out, it's less susceptible to injection attacks (non-parameterized SQL is really bad about this). </p>
<p>There are performance benefits but they're debatably significant.</p>
<p>Jeff (StackOverflow founder) is fond of LINQ to SQL which is different than using Stored Procedures but still safer overall than using inline code.</p>
http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstall0Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall?Schnapple2009-10-19T21:36:17Z2009-10-19T22:21:58Z
<p>I think my local install of Visual Studio 2008 has gone a bit scooters.</p>
<ul>
<li>When I'm debugging I'm unable to view the "Watch" windows - I'll see one come up when I click on it but then it disappears. </li>
<li>Nothing wants to stay where it's supposed to - the "Watch 2" window wants to stay on the other monitor, there's intermittently one or two or neither of them, etc.</li>
<li>There's now a large gray area at the bottom of the screen which changes shape every time I Alt+Tab</li>
</ul>
<p>Anyone know of a good way to fix or "reset" everything in VS2008 without having to resort to a reinstall? </p>
http://stackoverflow.com/questions/1568265/why-does-my-pdf-ask-for-a-password-after-being-retrieved-from-visual-sourcesafe0Why does my PDF ask for a password after being retrieved from Visual SourceSafe?Schnapple2009-10-14T18:52:50Z2009-10-14T19:11:54Z
<p>PREFACE: Yes we're moving away from VSS in the next few months.</p>
<p>One of my web projects contains, as one of its files, a PDF. The PDF on our QA site is being pulled from VSS.</p>
<p>A QA tester recently told me he's being prompted for a password when he tries to open it. VSS says the file I have on disk is different than the one it has, so I updated it, but afterwards it's still being shown as different.</p>
<p>So basically VSS is mangling my PDF and the results are so wobbly that Adobe Acrobat Reader is confused and thinks it has a password.</p>
<p>I've tried adding it as Auto-Detect and as Binary. Same results.</p>
<p>Why does my PDF ask for a password after being retrieved from Visual SourceSafe and how can I prevent it?</p>
http://stackoverflow.com/questions/1500835/c-dictionary-with-two-values-per-key4C# Dictionary with two Values per Key?Schnapple2009-09-30T21:47:13Z2009-09-30T22:35:16Z
<p>I have a situation in code where a <code>Dictionary<string, string></code> seemed like the best idea - I need a collection of these objects and I need them to be accessible via a unique key. Exactly what the Dictionary concept is for, right?</p>
<p>Well, the requirements have expanded to the point where I now need to hold an additional bit of information per-key (a boolean value, if you're curious).</p>
<p>So, I figure expand the concept to create a new data structure with the string and the boolean and have it now be a <code>Dictionary<string, NewCustomObject></code>.</p>
<p>However, for just one additional value like a boolean flag, it just feels like overkill. And yet I don't know of any Dictionary-like generic object with two values per key. </p>
<p>Is just having a Dictionary of custom objects the best way to go about this or is there something simpler for this scenario?</p>
http://stackoverflow.com/questions/194396/when-interviewing-someone-should-you-ask-why-theyre-looking-for-another-job8When interviewing someone, should you ask why they're looking for another job?Schnapple2008-10-11T18:16:26Z2009-09-30T18:34:20Z
<p>When you interview someone for a job, or are helping to interview someone for a job, is it rude to ask why they're interviewing in the first place?</p>
<p>Sometimes the answer is easy like "well my company is laying off a thousand people this year and so I've decided to move on" or "they've decided to get out of software development and instead make candles"</p>
<p>Sometimes it's the safe middle road like "well I feel I've taken my career as far as it can go in my current job..."</p>
<p>But sometimes the answer could be something that throws up a red flag like "well I can't stand my boss" (could this person be a problem employee?) or "I didn't like Technology X" (well we use lots of Technology X here...) or "I don't like staying in a job for more than six months..." (well, we were planning on hiring long term...)</p>
<p>On the one hand, setting off a red flag can keep you from hiring the wrong person - on the other hand it could also be a false positive. You might wind up not hiring the best employee ever just because he had a total slimeball of a boss and couldn't contain himself, for example.</p>
<p>Is it appropriate to ask why this person is looking for another job? Or should you just not worry with such a thing?</p>
http://stackoverflow.com/questions/1455577/how-can-i-make-an-activex-control-written-with-c-raise-events-in-javascript-when1How can I make an ActiveX control written with C# raise events in JavaScript when clicked?Schnapple2009-09-21T16:58:49Z2009-09-21T20:39:06Z
<p>I'm seeing a few questions related to this on SO already, but I think mine is sufficiently different to not be considered a duplicate (if I'm wrong let me know).</p>
<p>I have an ActiveX control I've written in C# and while I have it mostly working, I want to raise an event in JavaScript when it's clicked (it displays an image so it's a visual element on the page). </p>
<p>The end goal of what I'm looking to accomplish is no different than if it were a <code><span></code> tag and it had an <code>onclick</code> event to raise a JavaScript function when the area of the tag were clicked.</p>
<p>Most of the <a href="http://stackoverflow.com/questions/150814/how-to-handle-an-activex-event-in-javascript/379872#379872">stuff I've read</a> on it goes into very fine detail on how to handle events in an ActiveX control and send info back/forth, and that's fine, but it seems overly complicated. I'm not looking to communicate with the ActiveX control, I just need a JavaScript function to fire off when I click it, in a way similar to a <code><span></code> or <code><div></code> tag. I can handle everything else in JavaScript. Simply wrapping the control in a <code><span></code> or <code><div></code> with an <code>onclick</code> event has no effect - the ActiveX control pretty much overrides it.</p>
<p>Is there a simple way to handle this for an ActiveX control written in C#?</p>
<p>I guess another way of putting it is - I'm working with a third party control and we have to use code similar to the following to get it to communicate with our HTML page via JavaScript</p>
<pre><code><script type="text/javascript" event="OnMouseClick(index)" for="AXObjectName">
<!--
AXObjectName_OnMouseClick(index);
//-->
</script>
</code></pre>
<p>Where <code>AXObjectName</code> is the name/id of the control and <code>AXObjectName_OnMouseClick</code> is the name of the JavaScript function it will fire in my code, passing an <code>index</code> parameter. However, what all do I have to do to set up a method like <code>OnMouseClick</code> in the control? And if I don't want to pass any actual information (i.e., no <code>index</code>) do I even have to go this far?</p>
http://stackoverflow.com/questions/1413339/are-there-any-programs-to-aid-in-the-mass-editing-of-visual-sourcesafe-checkin-co0Are there any programs to aid in the mass-editing of Visual SourceSafe checkin comments?Schnapple2009-09-11T21:19:43Z2009-09-21T17:59:31Z
<p>I know that in Visual SourceSafe you can go in and drill down to the history of an individual file and then drill down to an individual check-in and apply a comment to the check-in that way but that's tedious and time consuming - if you have a lot of files that were checked in at the same time and you want the same comment to apply to all of them this will take forever. </p>
<p>I use the tool <a href="http://www.codeproject.com/KB/applications/VssReporter.aspx" rel="nofollow">VSSReporter</a> to generate reports of checkins and other stuff from VSS, but it cannot edit anything, only report on them. </p>
<p>Are there any tools which will let you go back and retroactively apply comments to check-ins in an efficient and easy manner?</p>
http://stackoverflow.com/questions/1413339/are-there-any-programs-to-aid-in-the-mass-editing-of-visual-sourcesafe-checkin-co/1455892#14558920Answer by Schnapple for Are there any programs to aid in the mass-editing of Visual SourceSafe checkin comments?Schnapple2009-09-21T17:59:31Z2009-09-21T17:59:31Z<p>While I did not find a program that can aid in this, I found the <a href="http://msdn.microsoft.com/en-us/library/bh58tzy9%28VS.80%29.aspx" rel="nofollow">SourceSafe Command Line Reference</a> and constructed a program that did the following:</p>
<ol>
<li>Imported a tab-delimited file from <a href="http://www.codeproject.com/KB/applications/VssReporter.aspx" rel="nofollow">VSSReporter</a> which has the comments added via Excel</li>
<li><p>Created StringBuilder and added these lines</p>
<p><code>set path=%path%;"C:\Program Files (x86)\Microsoft Visual SourceSafe\"</code></p>
<p><code>set ssdir=\\VSSServerName\VSSINIDirectory</code></p></li>
<li><p>For each entry in the file, add these lines to the StringBuilder (modifying verson number <code>-V</code>)</p>
<p><code>ss cp "$/Path/to/project"</code></p>
<p><code>ss Comment "FileToComment.cs" -C"Comment to apply to Version 1" -V1</code></p></li>
<li><p>Output StringBuilder to date/timestamped batch file.</p></li>
<li>Fire off batch file via a <code>System.Diagnostics.Process</code>, redirecting output to an identically date/timestamped text file.</li>
</ol>
<p>I can't share the code since I wrote it on my company's dime but I thought I'd share the process anyway</p>
http://stackoverflow.com/questions/1406329/how-to-get-a-non-techie-coworker-to-be-able-to-hand-you-content-and-documents-in0How to get a non-techie coworker to be able to hand you content and documents in HTML?Schnapple2009-09-10T16:30:09Z2009-09-10T20:38:46Z
<p>I'm working on a public-facing web-based product which has a series of help files.</p>
<p>The coworkers whose job it is to make those help files are fluent in Microsoft Word. They're not fluent in HTML. Their workstations do not include Visual Studio. </p>
<p>So what it looks like is going to happen is they will author the help file contents in Microsoft Word and then I will have to take that content and turn it into the HTML which the site will ultimately render. </p>
<p>Microsoft Word has HTML exporting/saving functionality but last time I looked the output was nightmarish and terrifying to work with.</p>
<p>Updates to this content (and I'm sure there will be many) will be a similar coordination hassle.</p>
<p>I'm tempted to get these coworkers a download link to <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Microsoft Visual Web Developer 2008 Express Edition</a>, but I'm not sure if that will be too difficult for them to use since it may be too much like Visual Studio, which they're not familiar with, and not enough like Word, which has tools they need like spell checking and so forth.</p>
<p>Surely this is not a unique problem. When your team in this area essentially consists of the developers who come up with the code and drop the help files into place, and coworkers who come up with the help file content but aren't techies, what's the best most pain-free way to get them to give you HTML or near-HTML content?</p>
http://stackoverflow.com/questions/530943/can-i-change-or-control-the-color-of-the-iframe-area-before-the-content-loads0Can I change or control the color of the IFRAME area before the content loads?Schnapple2009-02-10T03:04:59Z2009-09-02T21:00:19Z
<p>I have a site where portions of the content are loaded into IFrames. </p>
<p>The problem I'm having is that the inside content of the iFrame is white until the page itself loads, and the content has a different background color (blue, in this case). So I have these white squares on the screen until the contents load.</p>
<p>Is there any way to specify what color the empty IFrame should render as until it has content? </p>
<p>Or am I taking the wrong tack here - is there a good way to keep the page from rendering until the contents are ready to be displayed?</p>
<p><strong>UPDATE:</strong> Looks like the "white area" bit I'm describing is IE-specific.</p>
http://stackoverflow.com/questions/1368430/how-do-you-present-an-email-address-to-thwart-casual-spammers-not-spambots3How do you present an email address to thwart casual spammers (not spambots)?Schnapple2009-09-02T15:34:36Z2009-09-02T15:54:31Z
<p><strong><em>Preface</strong>: I'm honestly not sure if this should be on StackOverflow, SuperUser or Doctype. If it needs to be on SuperUser please move it. If it needs to be on Doctype please close it and I'll re-post it there.</em></p>
<p>We all know that putting your email address anywhere on the Internet in any format, be it in plain text or a <code>mailto:</code> link, will cause it to be harvested by a spambot. And there are <a href="http://stackoverflow.com/questions/748780/best-way-to-obfuscate-an-e-mail-address-on-a-website">many</a> <a href="http://stackoverflow.com/questions/483212/effective-method-to-hide-email-from-spam-bots">questions</a> <a href="http://stackoverflow.com/questions/308772/what-are-some-ways-to-protect-emails-on-websites-from-spambots">already</a> on the topic here.</p>
<p>For companies though, spambots are just part of the cost of doing business. So while using something like listing your email address in the form of <code>[someone] [at] [companyname] [dot] [com]</code> may thwart a spam bot, it also makes a potentially paying customer go through just enough hassle to ignore you (and it's possible the user isn't savvy enough to understand what's going on), so you just sort of suck it up and deal with the spam.</p>
<p>However, I've got a client who has a different issue - they have potential customers who will go to several dozen websites, click on the email address, paste in a prepared text and subject (sometimes going so far as to also paste in my client's business name to appear like it's not a prepared text they're sending to everyone). My client then spends time hand-crafting a response, only to never hear from the potential customer again because in this "casual spammer" approach, the vendor that sends back the lowest hard dollar amount in their email pretty much wins (and the nature of my client's business is such that almost without fail the vendor which will quote you a dollar amount without having met you is a big red flag but that's beside the point).</p>
<p>So the client has suggested that while we leave their email on the site in <code>someone@companyname.com</code> format, we don't make it a clickable mailto: link. The thought is that maybe the act of having to select and copy the email address into a message would thwart some of the "mass price shopping" customers. My client's industry does not lend itself to repeat business so they're not likely to ever land these customers anyway and losing them to this approach is ultimately harmless.</p>
<p>I'm skeptical about this but I'm curious if there's any better ideas to thwart "casual" spammers. </p>
<p><strong>To Clarify:</strong> I'm not worried about spambots or screen scrapers or anything habitual or automatic. I'm talking about the concept that an actual person goes to dozens of similar websites sending identical emails to each company in order to find the lowest price. These are the customers which would never hire my client and so we're looking for a way to slow or thwart them without turning away people who aren't just spamming as many companies as they can find.</p>
http://stackoverflow.com/questions/587028/how-do-i-make-the-preview-link-on-a-wordpress-post-or-page-point-somewhere-else2How do I make the Preview link on a WordPress post or page point somewhere else?Schnapple2009-02-25T17:38:14Z2009-08-31T15:29:28Z
<p>I've done a lot of small projects on the side lately where the client wants a good chunk of the website to stay the same, they just want to be able to edit particular "areas" of the site. Namely, some text in some box somewhere. </p>
<p>I've found that WordPress works for this pretty well. The interface is nice and friendly to use, and it's got lots of work behind it so I don't have to reinvent wheels, fix bugs, etc. </p>
<p>So what I wind up doing is making PHP pages which look like what the client wants, then making the content editable areas contain a particular post or page, which is what is editable in WordPress.</p>
<p>I'm having the particular page's contents displayed on the page using code like this</p>
<pre><code><?php echo apply_filters('the_content', $page_Contact->post_content); ?>
</code></pre>
<p>where <code>$page_Contact</code> is a variable defined elsewhere.</p>
<p>However, the "Preview" or "View Page"/"View Post" function on each page/post goes to the logical WordPress location and this is not the effect I want in this case.</p>
<p>So for example I have pages like this</p>
<pre><code>www.site.com/index.php
www.site.com/about.php
www.site.com/contact.php
</code></pre>
<p>And so forth. </p>
<p>WordPress wants to have the "View Page" and "Preview Changes" links go places like </p>
<pre><code>www.site.com/?page_id=2
www.site.com/?page_id=8&preview=true&preview_id=8&preview_nonce=45522671f5
</code></pre>
<p>Which is a problem because, in the permalink structure above, both of those go to the index.php page which, except for the page I'm using to structure index.php, it's not where I want the user/editor to go. And none of the cases above allow any sort of preview (which is a concession I'm willing to make given how I'm doing this)</p>
<p>Is there a way, <strong>preferably using a plugin</strong> to rig WordPress such that the preview for a page in the dashboard goes to a preview of the non-index.php page where the content will be housed? So for example the link for the "Contact" page in WordPress's dashboard goes to <code>contact.php</code> instead of <code>?page_id=2</code>? This is a deal where I'm trying to get this done <em>in the editing interface</em> and I'm not concerned about the links in the site itself.</p>
<p>Obviously I would need to maintain this per-page and this would be a situation where new pages don't go up unless I put them there.</p>
http://stackoverflow.com/questions/1324402/how-do-you-get-started-when-trying-to-understand-the-code-of-a-3d-game-engine-li9How do you get started when trying to understand the code of a 3D game engine (like id Tech 3)?Schnapple2009-08-24T19:56:47Z2009-08-27T21:10:23Z
<p>I'm a C# developer for the most part. Back in college I had classes on C/C++ so I "know C" and that's a good chunk of the reason I'm a C# developer.</p>
<p>However I've never had the chance to code in C/C++ professionally and I'd like to study how a modern game engine works, along with how an industrial grade C/C++ app operates.</p>
<p>The problem is, I have no idea where to start. As in, I downloaded the Quake 3 engine <a href="ftp://ftp.idsoftware.com/idstuff/source/quake3-1.32b-source.zip" rel="nofollow">source code</a> (which has been retronymed <a href="http://en.wikipedia.org/wiki/Id%5Ftech%5F3" rel="nofollow">id Tech 3</a>) and I'm not even sure where to start with it.</p>
<p>How should a sheltered C#/WinForms attack a massive C codebase like id Tech 3 or some other massive AAA engine?</p>
http://stackoverflow.com/questions/1330894/how-can-i-get-the-text-of-a-selected-option-with-asp-net-mvc0How can I get the text of a selected option with ASP.NET MVC?Schnapple2009-08-25T20:44:51Z2009-08-26T07:25:43Z
<p>I have a form in an ASP.NET MVC project which has a select drop down list akin to the following:</p>
<pre><code><select>
<option value="ee5711b9-ec86-4378-a975-ae10a4ebedbc">Volvo Account</option>
<option value="0dc0e9d8-2245-43de-81a9-5b94c19646fa">Saab Account</option>
<option value="f9a05ef6-9ca6-4eeb-9e04-79726a62b38c">Mercedes Account</option>
<option value="1c5c2e43-06d6-4b7d-916a-231be535a608">Audi Account</option>
</select>
</code></pre>
<p>In a later page in the project I need to do something with the GUID identifier, but first I need to prompt the user for confirmation. Obviously the GUID is useless to them and they'd like to see the friendlier name (i.e., "Volvo Account"). </p>
<p>But when I drill into the FormCollection values, all I can get is the value, not the text of the selected option This makes sense given the design goals, but how can I also POST over the text value?</p>
<p>I can think of some workarounds (setting a hidden field with JavaScript, doing a lookup after the fact with the GUID and the same method by which I populated this, etc.) but is there any intrinisc way to do this I'm missing?</p>
http://stackoverflow.com/questions/1325698/how-do-i-create-seo-friendly-urls-in-asp-net-mvc/1325720#13257206Answer by Schnapple for How do I create SEO-Friendly urls in ASP.Net-MVCSchnapple2009-08-25T02:12:24Z2009-08-25T02:12:24Z<p>MVC stands for "Model View Controller" and while those concepts aren't what you're asking about, you generally can wire up URL's like you see above quite easily</p>
<p>So for example by default the URL's look like the following</p>
<pre><code>http://www.somesite.com/controller/view/
</code></pre>
<p>where controller refers to the controller class within your project, and view refers to the page/method combination within the controller. So for example you could write the view to take in an input and look something like the following</p>
<pre><code>http://www.somesite.com/widget/productid/1234/
</code></pre>
<p>Now as for <em>SEO Friendly</em> URL's, that's just useless sugar. You author your controller such that it adds harmless cruft to the end of the URL. </p>
<p>So for example, you'll notice that the following three ways to get to this question produce the same result:</p>
<p><a href="http://stackoverflow.com/questions/1325698/how-do-i-create-seo-friendly-urls-in-asp-net-mvc">http://stackoverflow.com/questions/1325698/how-do-i-create-seo-friendly-urls-in-asp-net-mvc</a></p>
<p><a href="http://stackoverflow.com/questions/1325698/">http://stackoverflow.com/questions/1325698/</a></p>
<p><a href="http://stackoverflow.com/questions/1325698/who-cares">http://stackoverflow.com/questions/1325698/who-cares</a></p>
<p>Stack Overflow has authored their route values such that the bit that occurs after the question ID isn't really necessary to have.</p>
<p>So why have it there? To increase Google PageRank. Google PageRank relies on many things, the sum total of which are secret, but one of the things people have noticed is that, all other things being equal, descriptive text URL's rank higher. So that's why Stack Overflow uses that text after the question number. </p>
http://stackoverflow.com/questions/1228416/how-can-i-script-resetting-the-mouse-pointer-after-an-application-fails-to-reset1How can I script resetting the mouse pointer after an application fails to reset it?Schnapple2009-08-04T16:07:55Z2009-08-05T11:13:52Z
<p>A friend of mine has to use an internally-written Windows application to perform part of their job.</p>
<p>Something he has noticed is that the app does the bit where it changes the mouse pointer to an hourglass when it's working, sets it back to normal when it's done, etc. </p>
<p>However there appears to be a bug where in some circumstances the mouse pointer does not return to normal and remains an hourglass. It still works fine, being able to click buttons and select things and so forth, but it's an hourglass and not an arrow like normal. </p>
<p>This behavior continues <strong>even after the application is exited</strong>. </p>
<p>Said friend was resorting to rebooting to fix the issue until we stumbled across the fact that bring up the "Mouse" dialog in the control panel appears to reset it to normal.</p>
<p>Being a developer, I figure there's got to be some sort of command or script or something to fix this. So, <strong>assuming that fixing the application is beyond the scope of my friend's power</strong>, how can one reset the mouse pointer via a script or other command?</p>
http://stackoverflow.com/questions/1229488/proper-way-to-handle-maneuvering-through-pages-using-buttons-in-asp-net-mvc2Proper way to handle maneuvering through pages using buttons in ASP.NET MVC?Schnapple2009-08-04T19:36:29Z2009-08-04T19:51:52Z
<p>I'm writing an app with ASP.NET MVC where, for various reasons, the navigation is handled through HTML input buttons. What are the Best practices on how to handle this situation?</p>
<ol>
<li><p>Set up a Form on the buttons where information needs to be POSTed and just use JavaScript to redirect on the buttons where information doesn't need to be retained</p></li>
<li><p>Have all buttons handled through forms, to the point where a mini-form handles navigation on the buttons where the information doesn't need to be retained</p>
<pre><code><% using (Html.BeginForm())
{ %>
<input type="hidden" name="controller" value="1" />
<input type="hidden" name="action" value="Location" />
<input id="BackButton" type="submit" value="Go Back" />
<% } %>
</code></pre></li>
<li><p>Something I haven't thought of here</p></li>
</ol>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory3What's the best way to get TFS to output each project to its own directory?Schnapple2009-03-30T20:15:04Z2009-07-24T13:25:34Z
<p>I'm putting a large codebase into Team Foundation Server. I would like the build process to create a "ready to deploy" build of our projects.</p>
<p>The normal way we've been doing this is to have each project's output be in its own folder. So, for example, we wind up with something like</p>
<pre><code>C:\project1\
assembly1.dll
assembly2.dll
project1.exe
project1.exe.config
C:\project2\
assembly2.dll
assembly3.dll
project2.exe
project2.exe.config
C:\project3\
assembly1.dll
assembly3.dll
project3.exe
project3.exe.config
</code></pre>
<p>Which is the way we like it.</p>
<p>TFS, though, seems to want to stick everything in the same directory.</p>
<pre><code>C:\output\
assembly1.dll
assembly2.dll
assembly3.dll
project1.exe
project1.exe.config
project2.exe
project2.exe.config
project3.exe
project3.exe.config
</code></pre>
<p>which, although it saves some amount of disk space (the assemblies are only there one time each) is not how we want it. </p>
<p>What's the best way to specify where TFS/MSBuild should put the output files? Do I need to edit sln/csproj files individually to achieve this or can I do it in the TFSBuild.proj file? (i.e., in a MSBuild-specific file)</p>
http://stackoverflow.com/questions/1120526/what-are-the-common-sense-seo-practices-that-arent-dodgy-or-crap7What are the common sense SEO practices that aren't dodgy or crap?Schnapple2009-07-13T16:23:35Z2009-07-13T19:41:56Z
<p>PREFACE: If this question is redundant feel free to delete/close whatever. Based off of what I've seen on SO I don't think it is but it could be that questions of this nature get closed.</p>
<p>I hate SEO. At best it's lame, at worst it's a scam.</p>
<p>However when designing sites that need to be consumed by the public, it's something to take into consideration. Stack Overflow does it - that's what those words at the end of the URL are for. And it works - Stack Overflow is outranking that... other site. </p>
<p>But I know that outside of snake oil salesmen with their link farms, the best things you can do for SEO are:</p>
<ol>
<li>Have the most relevant site, text-wise, on your topic for given search terms, and</li>
<li>Have at least implemented some common sense stuff. </li>
</ol>
<p>So, <strong>bearing in mind that I'm not talking about a scam here</strong>, what are the common sense SEO techniques a web developer needs to keep in mind when designing or working on a site? I would think things like</p>
<ol>
<li>Get familiar with Google Sitemaps and make sure to update them regularly, writing a tool for it if necessary</li>
<li>Use keywords in the title of the page (which I think is lame but it's necessary)</li>
<li>Use proper HTML - <code><strong></code> instead of <code><b></code>, etc.</li>
<li>Don't implement important text-based sections in Flash - Google will probably not see them and if it does, it'll screw it up.</li>
<li>Don't use JavaScript for redirection - Google's crawlers will just skip it</li>
</ol>
<p>Anything else?</p>
http://stackoverflow.com/questions/1104773/what-is-the-asp-net-mvc-equivalent-of-displaying-a-label-conditionally0What is the ASP.NET MVC equivalent of displaying a Label conditionally?Schnapple2009-07-09T15:47:55Z2009-07-09T18:34:52Z
<p>I'm currently porting an ASP.NET WebForms application to ASP.NET MVC. </p>
<p>In one of the pages there is an ASP.NET Label control which is displayed conditionally based on a variable in the codebehind. So, something to the effect of</p>
<pre><code><asp:Label runat="server" Visible="<%# ShowLabel%>">
...
</asp:Label>
</code></pre>
<p>Where ShowLabel is a Boolean value in the codebehind. The contents of the label are generated at runtime and will be different pretty much every time.</p>
<p>There's better ways to do this even in ASP.NET, but what would be the best way to do this in ASP.NET MVC? How are you even supposed to render dynamic text in ASP.NET MVC in a way similar to how the ASP.NET Label object worked?</p>
http://stackoverflow.com/questions/615279/why-are-some-solutions-not-building-completely-with-tfs0Why are some solutions not building completely with TFS?Schnapple2009-03-05T15:31:46Z2009-07-07T08:00:02Z
<p>I'm noticing some solutions in Team Foundation Server 2008 won't build completely. As in, some number of the projects in the solution succeed but then one fails. The particular failing project says I’m missing an assembly reference. But I'm not - the project has the reference. It builds fine on my PC. I'm looking at the .csproj file that the build agent pulled down and it has the reference, too (it's line-for-line identical to the project I'm building). </p>
<p>The reference in question is to another project in the solution. At first I thought it wasn't building projects in the right order but the build log is telling me that it did (i.e., the project which the reference is in reference to built successfully). So my guess is that somehow on this project (and I’d say about 10-20% of the projects I’m having it build are failing) it’s looking at the wrong folder for assemblies, but I have no idea. </p>
<p>Has anyone ever seen this before?</p>
<p>I did have one Solution which was building things in the wrong order and some Googling seemed to indicate that this was an occasional side-effect of converting a VS2003 SLN file to a VS2008 SLN file (and it was happening in Visual Studio as well), so in that case I made a new SLN from scratch, checked that in "on top" of the problematic one, and it worked fine. But I tried that in the problem above and it didn’t make a difference.</p>
http://stackoverflow.com/questions/1075423/asp-net-mvc-how-to-handle-an-expired-password2ASP.NET MVC - How to handle an expired password?Schnapple2009-07-02T16:39:20Z2009-07-02T16:49:07Z
<p>What's the best way to handle an <strong>expired</strong> password in an ASP.NET MVC application?</p>
<p>Let me explain - ASP.NET MVC is obviously set up (both in the barebones app the NerdDinner example) to handle the following scenarios:</p>
<ul>
<li>Register new users</li>
<li>Allow them to change their password</li>
<li>Log in using a valid account/password</li>
</ul>
<p>What it doesn't have is a really good way to do the following:</p>
<ul>
<li>Force the user to change their password if it is expired</li>
</ul>
<p>The ASP.NET MVC way of thinking points to the idea of having the user go to a separate URL/view to perform the password changes. </p>
<p><strong>The problem with this idea</strong> is that I don't want people to be able to go to this URL if they're not logged in, and I don't want them to be able to go anywhere <em>else</em> in the site with an expired password.</p>
<p>In the past the way I've handled this is to have the user not leave the login page and have an ASP.NET panel show itself with the "oh hey you need to change your password" bit, and hide the rest of the page. At this point the user is not logged on yet, so they won't be authenticated and can't go anywhere until they change their password.</p>
<p>But ASP.NET MVC makes this difficult. If I do like above and have everything on the login page then I have to have a very cumbersome Login() action in order to handle all of the possible posted values. If I have it post to another action/view then I run the risk of either having to log in the user or have the change password page be not protected by authentication (since, unlike the "change password" bit you get provided with, I don't want them to be authenticated when they see the page).</p>
<p>I can envision a few scenarios wherein you would set something in ViewData to indicate the password is expired and insist on redirecting the user to the "Change Password" page, but I'm not sure if that's a safe thing to do.</p>
http://stackoverflow.com/questions/1726000/how-do-i-make-sure-that-an-automatically-closed-window-closes-all-its-spawned-win/1726114#1726114Comment by Schnapple on How do I make sure that an automatically closed window closes all its spawned windows as well?Schnapple2009-11-12T23:43:43Z2009-11-12T23:43:43ZIn this context though, a popup makes sense - at least when the user is coming to our site through automatic logon. They don't want to be routed out of their original session, just logged onto ours as well.
Also this isn't an answer to the question and would have been better as a comment, just FYIhttp://stackoverflow.com/questions/180624/how-can-i-delete-not-disable-activex-add-ons-in-internet-explorer-7-and-8-beta/1671007#1671007Comment by Schnapple on How can I delete (not disable) ActiveX add-ons in Internet Explorer (7 and 8 Beta 2)?Schnapple2009-11-04T16:22:55Z2009-11-04T16:22:55ZI understand that one solution for this is a VM, but that's not what the questionhttp://stackoverflow.com/questions/521827/unlocker-equivalent-for-vista64/1633585#1633585Comment by Schnapple on "Unlocker" equivalent for Vista64?Schnapple2009-10-28T13:25:00Z2009-10-28T13:25:00ZFYI, this would have been better as a comment to my answerhttp://stackoverflow.com/questions/1627474/sneaky-seo-solution/1627515#1627515Comment by Schnapple on Sneaky SEO SolutionSchnapple2009-10-26T22:16:19Z2009-10-26T22:16:19ZAs Peter has pointed out, Google's ways are mysterious and untouchable. However, they probably at least understand why someone would want to do this - unless they can read the text in the SWF file then it's inaccessible. However, it's also really trivial to say "well it's OK when the only other thing on the page is a Flash document" and "well, this page swaps out 'wall of text 1' for 'wall of text 2'" and call bullshit on it.http://stackoverflow.com/questions/1627474/sneaky-seo-solutionComment by Schnapple on Sneaky SEO SolutionSchnapple2009-10-26T21:41:32Z2009-10-26T21:41:32ZI'm not sure why you're spelling Google like that but I do remember Jeff saying that Joel was suggesting he put out a special server just for Google crawlers so that it took load off the main site. I don't know how Google would react to this (presumably they'd be OK with it if Joel is suggesting it) or how they'd know if you kept the same content on each server.http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstall/1591346#1591346Comment by Schnapple on Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall?Schnapple2009-10-19T22:25:36Z2009-10-19T22:25:36ZFirst one seems to have done it. Thanks! I knew it had to be something simple.http://stackoverflow.com/questions/1591298/can-i-fix-corrupt-visual-studio-2008-toolbars-windows-without-having-to-reinstallComment by Schnapple on Can I fix corrupt Visual Studio 2008 toolbars/windows without having to reinstall?Schnapple2009-10-19T22:12:09Z2009-10-19T22:12:09ZAlso I'm on a deadlinehttp://stackoverflow.com/questions/1568265/why-does-my-pdf-ask-for-a-password-after-being-retrieved-from-visual-sourcesafe/1568371#1568371Comment by Schnapple on Why does my PDF ask for a password after being retrieved from Visual SourceSafe?Schnapple2009-10-14T19:43:52Z2009-10-14T19:43:52ZYes, I can verify that the file is not corrupt before I add it. I'll try the update, thanks. Also, do you have to install this on the server or just on the client end?http://stackoverflow.com/questions/1568265/why-does-my-pdf-ask-for-a-password-after-being-retrieved-from-visual-sourcesafeComment by Schnapple on Why does my PDF ask for a password after being retrieved from Visual SourceSafe?Schnapple2009-10-14T19:06:58Z2009-10-14T19:06:58ZI said it was unlikely but I've now clarified the question.http://stackoverflow.com/questions/1500835/c-dictionary-with-two-values-per-key/1500871#1500871Comment by Schnapple on C# Dictionary with two Values per Key?Schnapple2009-09-30T22:41:49Z2009-09-30T22:41:49ZI wound up going this route as the others looked equally as complicated and it's in .NET 3.5 so no Tuples for mehttp://stackoverflow.com/questions/1500835/c-dictionary-with-two-values-per-key/1500858#1500858Comment by Schnapple on C# Dictionary with two Values per Key?Schnapple2009-09-30T21:54:22Z2009-09-30T21:54:22ZMight be worth it just to have Jon Skeet code in my app :)http://stackoverflow.com/questions/1455577/how-can-i-make-an-activex-control-written-with-c-raise-events-in-javascript-when/1456714#1456714Comment by Schnapple on How can I make an ActiveX control written with C# raise events in JavaScript when clicked?Schnapple2009-09-21T21:01:03Z2009-09-21T21:01:03ZLiterally moments ago I got it working using the things I learned here: <a href="http://blog.ianchivers.com/wordpress/?p=22" rel="nofollow">blog.ianchivers.com/wordpress/?p=22</a>. Your code looks about like what I wound up with (and the link I just posted also includes javascript) so you win.http://stackoverflow.com/questions/1455577/how-can-i-make-an-activex-control-written-with-c-raise-events-in-javascript-whenComment by Schnapple on How can I make an ActiveX control written with C# raise events in JavaScript when clicked?Schnapple2009-09-21T17:29:03Z2009-09-21T17:29:03Z@MusiGenesis: yeah, and it's one of the ones I followed to get this far. What it doesn't do, though, is show how interacting with the ActiveX control can have any effect on the JavaScript in the page. http://stackoverflow.com/questions/1166272/efficient-function-for-reading-a-delimited-file-into-datatable/1166419#1166419Comment by Schnapple on Efficient function for reading a delimited file into DataTableSchnapple2009-09-14T16:16:57Z2009-09-14T16:16:57ZIs there a way to do this without Jet? For those of us with machines where Access is forbidden.http://stackoverflow.com/questions/1406329/how-to-get-a-non-techie-coworker-to-be-able-to-hand-you-content-and-documents-inComment by Schnapple on How to get a non-techie coworker to be able to hand you content and documents in HTML?Schnapple2009-09-10T17:08:45Z2009-09-10T17:08:45Z@Dillie-O: External, web-based. I'll clarify that.