User splattne - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:35:21Z http://stackoverflow.com/feeds/user/6461 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366683/how-to-design-a-good-about-box 4 How to design a good about box? splattne 2008-12-14T16:20:34Z 2009-12-09T03:31:53Z <p>There is not official standard dealing with the layout of <strong>about boxes</strong>, which display the credits of a computer software and other information.</p> <p><strong>What should a good about box contain?</strong> <em>And...</em> is it okay to put an <a href="http://en.wikipedia.org/wiki/Easter_egg_(virtual)" rel="nofollow">easter egg</a> in?</p> <p><img src="http://www.seasip.info/Gem/History/gem2about.png" alt="alt text" /></p> http://stackoverflow.com/questions/878345/reflectedschemas-folder-in-the-users-appdata-folder-visual-studio 5 ReflectedSchemas folder in the user's AppData folder (Visual Studio) splattne 2009-05-18T15:36:28Z 2009-12-01T00:33:19Z <p>Today I ran <a href="http://windirstat.info/" rel="nofollow">WinDirStat</a> to check what is filling up my harddisk. I was surprised to see that this folder contains 4.6 GB (!):</p> <pre><code>C:\Users\...\AppData\Roaming\Microsoft\VisualStudio\9.0\ReflectedSchemas </code></pre> <p>What is the purpose of this folder and the files it contains? Is there a way to get rid of these files in a safe way?</p> <p><em>Thanks!</em></p> http://stackoverflow.com/questions/274725/iframe-content-depending-on-referring-page/274732#274732 1 Answer by splattne for Iframe content depending on referring page splattne 2008-11-08T13:41:27Z 2009-11-24T20:33:12Z <p>You could solve it this way in Javascript using the <strong>document.referrer</strong> HTML DOM property:</p> <pre><code>if (document.referrer != 'page2.html') { document.getElementById('iFrameId').src = 'content1.html'; } else { document.getElementById('iFrameId').src = 'content2.html'; } </code></pre> <p>Here is <a href="http://www.w3schools.com/jsref/prop%5Fdoc%5Freferrer.asp" rel="nofollow">some documentation on the referrer property</a>.</p> <p>You could do it server-side too. Just tell us what environment (ASP.NET, PHP, ...) you are using.</p> http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c/69951#69951 76 Answer by splattne for Howto articles for iPhone development, Objective C splattne 2008-09-16T07:00:43Z 2009-11-20T20:11:15Z <p>I collected <strong>some links</strong> I used to start with iPhone development:</p> <ul> <li><a href="http://www.iphonedevcentral.org/" rel="nofollow">Video tutorials</a> for beginners, intermediate and advanced programmers</li> <li><a href="http://www.appsamuck.com/" rel="nofollow">Apps Amuck</a>: Welcome to 31 Days of iPhone Apps. Good tutorials - <em>"The key here is simple: "Taking baby steps is better than taking no steps at all"</em></li> <li><a href="http://freeborn.wordpress.com/2008/03/10/iphone-developmenet-where-to-start/" rel="nofollow">Blog Post about "Where to start"</a> </li> <li><a href="http://www.otierney.net/objective-c.html" rel="nofollow">Objective-C Beginner's Guide</a></li> <li><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter%5F1%5Fsection%5F1.html" rel="nofollow">The Objective-C 2.0 Programming Language: Introduction to The Objective-C 2.0 Programming Language</a> (Apple)</li> <li>Blog Post: <a href="http://talentgrouplabs.com/blog/archive/2008/08/24/how-to-jump-start-iphone-development.aspx" rel="nofollow">How to jump start iphone development</a></li> <li>Stanford University has a <a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php" rel="nofollow">free online course</a> (<em>"iPhone Application Programming"</em> - PDF files, 12 lectures so far)</li> </ul> <p>And don't forget all the <a href="http://developer.apple.com/iphone/library/navigation/GettingStarted.html" rel="nofollow">"Geting Started" articles on Apple's Developer Connection</a>. Here is the "<a href="http://developer.apple.com/iphone/library/referencelibrary/GettingStarted/GS%5FiPhoneGeneral/index.html" rel="nofollow">Getting Started with iPhone OS</a>" tutorial. </p> http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss 10 Which common features of desktop applications do most web applications miss? splattne 2008-12-16T10:51:11Z 2009-11-10T07:28:33Z <p>Stackoverflow User <a href="http://stackoverflow.com/users/17602/luke">Luke</a> wrote in <a href="http://stackoverflow.com/questions/138761/web-applications-desktop-applications#171113">this answer</a>:</p> <blockquote> <p>The boundaries between desktop and web applications have really blurred. Whilst once upon a time the nature of developing for the web was totally different to developing for the desktop, nowadays you find the same concepts [...] cropping up in both.</p> </blockquote> <p>Since I am continually looking to improve my existing web applications, I'd like to know <strong>which common features of "classic" desktop applications do most web application miss?</strong> </p> <p>For example, most desktop apps <a href="http://stackoverflow.com/questions/250055/aspnet-warning-on-changed-data-closing-windows">prompt the user to save unsaved data leaving a page or closing a window</a> - a feature that many web applications miss. It could be that some feature aren't even necessary or are compensated in some other way. Maybe there are features which can't be implemented in (a classic) web application?</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers 21 Is SEO knowledge important for web developers? splattne 2008-11-23T09:47:41Z 2009-11-02T13:09:24Z <p>Looking for some <strong>SEO (Search engine optimization) questions</strong> on Stackoverflow, I saw ambivalent reactions to these questions. Some were closed as "not programming related" or were downvoted, others were answered and got upvoted.</p> <p>It seems that many developers think SEO was something "dirty" or belonged in the realm of spam. IMHO designing for search engines and practising SEO techniques adds important value to the final product like, for example, a good user interface.</p> <p>Should SEO really be left to specialized non-programmers? Shouldn't web developers have profound SEO knowledge? Or is it okay to apply SEO as a post-development process?</p> http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer 115 Questions every good .NET developer should be able to answer? splattne 2008-12-13T17:47:33Z 2009-10-31T15:13:44Z <p>My company is about to hire <strong>.NET developers</strong>. We work on a variety of .NET platforms: ASP.NET, Compact Framework, Windowsforms, Web Services. I'd like to compile a list/catalog of good questions, a kind of minimum standard to see if the applicants are experienced. So, my question is:</p> <p><strong>What questions</strong> do you think should a good <strong>.NET programmer be able to respond</strong>?</p> <p>I'd also see it as a <strong>checklist</strong> for myself, in order to see where my own deficits are <em>(there are many...)</em>.</p> <p><img src="http://www.freeimagehosting.net/uploads/26e8b777dd.png" alt="alt text" /></p> <p>*UPDATE: It want to make clear that we're not testing only for .NET knowledge, and that problem solving capabilities and general programming skills are even more important to us. </p> http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer/366377#366377 68 Answer by splattne for Questions every good .NET developer should be able to answer? splattne 2008-12-14T10:34:11Z 2009-10-31T14:58:27Z <p>I found these lists on <a href="http://stackoverflow.com/users/6380/scott-hanselman">Scott Hanselman</a>'s <a href="http://www.hanselman.com/blog/" rel="nofollow">blog</a>:</p> <ul> <li><a href="http://www.hanselman.com/blog/WhatGreatNETDevelopersOughtToKnowMoreNETInterviewQuestions.aspx" rel="nofollow">What Great .NET Developers Ought To Know (More .NET Interview Questions)</a></li> <li><a href="http://www.hanselman.com/blog/ASPNETInterviewQuestions.aspx" rel="nofollow">ASP.NET Interview Questions</a></li> </ul> <p>Here are what I think are the most important questions from these posts divided into categories. I edited and re-arranged them. Fortunately for most of these questions there is already a good answer on Stack Overflow. Just follow the links <em>(I will update them all ASAP)</em>.</p> <h2>Platform independent .NET questions</h2> <ul> <li><a href="http://stackoverflow.com/questions/200469/what-is-the-difference-between-a-process-and-a-thread">What is the difference between a <strong>thread</strong> and a <strong>process</strong></a>?</li> <li><a href="http://www.dotnetspider.com/forum/ViewForum.aspx?ForumId=27373" rel="nofollow">What is the difference between an <strong>EXE</strong> and a <strong>DLL</strong></a>? </li> <li><a href="http://stackoverflow.com/questions/323323/can-someone-tell-me-what-strong-typing-and-weak-typing-means-and-which-one-is-b">What is <strong>strong-typing</strong> versus <strong>weak-typing</strong></a>?</li> <li><a href="http://stackoverflow.com/questions/112625/vs-objectequalsobject-in-net">What is the difference between <code>a.Equals(b)</code> and <code>a == b</code></a>?</li> <li><a href="http://stackoverflow.com/questions/13055/what-is-boxing-and-unboxing-and-why-is-it-bad">What is <strong>boxing</strong></a>?</li> <li><a href="http://msdn.microsoft.com/en-us/library/t63sy5hs%28VS.80%29.aspx" rel="nofollow">Is string a <strong>value type</strong> or a <strong>reference type</strong></a>? </li> <li><a href="http://stackoverflow.com/questions/23578/what-are-the-advantages-and-disadvantages-of-using-the-gac">What is the <strong>Global Assembly Cache</strong> (GAC)? What problem does it solve</a>?</li> <li><a href="http://stackoverflow.com/questions/570302/when-are-interfaces-needed">What is an <strong>Interface</strong></a> and how is it different from a Class?</li> <li><a href="http://www.odetocode.com/Articles/288.aspx" rel="nofollow">What is <strong>Reflection</strong>?</a></li> <li>Conceptually, what is the difference between <strong><a href="http://visualbasic.about.com/od/usingvbnet/a/earlybind.htm" rel="nofollow">early-binding</a></strong> and <strong><a href="http://blogs.msdn.com/davidklinems/archive/2006/11/27/what-is-late-binding.aspx" rel="nofollow">late-binding</a></strong>?</li> <li>When would using <a href="http://www.codeproject.com/KB/dotnet/AssemblyLoadFile.aspx" rel="nofollow"><code>Assembly.LoadFrom</code> or <code>Assembly.LoadFile</code></a> be appropriate?</li> <li>What is an <strong><a href="http://msdn.microsoft.com/en-us/library/k8xx4k69.aspx" rel="nofollow">Asssembly Qualified Name</a></strong>? Is it a filename? How is it different?</li> <li>How is a <strong><a href="http://msdn.microsoft.com/en-us/library/wd40t7ad.aspx" rel="nofollow">strongly-named assembly</a></strong> different from one that isn’t strongly-named?</li> <li>What does this do? <a href="http://www.ondotnet.com/pub/a/dotnet/2003/04/28/strongnaming.html" rel="nofollow">sn -t foo.dll</a> </li> <li>How does the generational <strong>garbage collector</strong> in the <a href="http://it.toolbox.com/blogs/programming-life/memory-manangement-in-net-6788" rel="nofollow">.NET CLR manage object lifetime</a>? What is <a href="http://www.ondotnet.com/pub/a/oreilly/dotnet/news/programmingCsharp%5F0801.html" rel="nofollow">non-deterministic finalization</a>?</li> <li><a href="http://stackoverflow.com/questions/339063/what-is-the-difference-between-using-idisposable-vs-a-destructor-in-c">What is the difference between <code>Finalize()</code> and <code>Dispose()</code>?</a> (<a href="http://www.dotnetspider.com/resources/1382-Understanding-IDisposable-pattern.aspx" rel="nofollow">external article</a>)</li> <li>What is the difference between <strong>in-proc</strong> and <strong>out-of-proc</strong>? What technology enables <a href="http://walkin-interview.com/aspnet-interview-questions/what-technology-enables-out-of-proc-communication-in-net" rel="nofollow">out-of-proc communication</a> in .NET? </li> <li><a href="http://stackoverflow.com/questions/102282/does-full-trust-mean-the-same-as-run-as-administrator">What is <strong>FullTrust</strong></a>? Do GAC’ed assemblies have FullTrust?</li> <li><a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B815788" rel="nofollow">What is the difference between <code>Debug.Write</code> and <code>Trace.Write</code></a>? When should each be used?</li> <li><a href="http://www.hanselman.com/blog/PermaLink.aspx?guid=a40c0d4f-66d0-4704-94f6-0efda4a44465" rel="nofollow">What is the difference between a <strong>Debug and Release build</strong>?</a> Is there a significant speed difference? Why or why not?</li> <li><a href="http://stackoverflow.com/questions/88490/throwing-exceptions-in-asp-net-c">What is the difference between: <code>catch (Exception e) {throw e;}</code> and catch <code>(Exception e) {throw;}</code></a> ?</li> <li><a href="http://stackoverflow.com/questions/139607/what-is-the-difference-between-mycustomergettype-and-typeofcustomer-in-c">What is the difference between <code>typeof(foo)</code> and <code>myFoo.GetType()</code></a>? </li> <li><a href="http://stackoverflow.com/questions/128389/what-are-xml-namespaces-for">What is the purpose of <strong>XML Namespaces</strong></a>?</li> <li>What is the difference between an XML "<strong>Fragment</strong>" and an XML "<strong>Document</strong>"? (<a href="http://jameleon.sourceforge.net/xmlBasics.html" rel="nofollow">XML Basics</a>)</li> <li><a href="http://support.microsoft.com/?scid=kb;en-us;318504" rel="nofollow">How would you <strong>validate XML</strong> using .NET</a>? </li> </ul> <h2>ASP.NET</h2> <ul> <li><a href="http://www.xefteri.com/articles/show.cfm?id=18" rel="nofollow">What is a <strong>PostBack</strong></a>?</li> <li><a href="http://msdn.microsoft.com/en-us/library/bb386448.aspx" rel="nofollow">What is <strong>ViewState</strong></a>? How is it <a href="http://www.pluralsight.com/community/blogs/fritz/archive/2004/06/03/408.aspx" rel="nofollow">encoded</a>? Is it encrypted? Who uses ViewState? Why is it either useful or evil? </li> <li>What <a href="http://msdn.microsoft.com/en-us/library/aa479034.aspx" rel="nofollow"><strong>Session State providers</strong></a> are available in ASP.NET? What are the pros and cons of each?</li> <li>What is the <strong>OO relationship between an ASPX page and its CS/<a href="http://support.microsoft.com/?scid=kb;en-us;312311&amp;x=10&amp;y=12" rel="nofollow">VB code behind</a></strong> file?</li> <li>How would one implement <a href="http://aspnet.4guysfromrolla.com/articles/121306-1.aspx" rel="nofollow">ASP.NET HTML <strong>output caching</strong></a>, caching outgoing versions of pages generated via all values of <code>q=</code> except where <code>q=5</code> (as in <code>http://localhost/page.aspx?q=5</code>)?</li> <li><a href="http://stackoverflow.com/questions/391130/what-is-a-httphandler-in-aspnet">What are <strong>HttpHandlers</strong></a>?</li> <li><a href="http://www.15seconds.com/Issue/020417.htm" rel="nofollow">What are <strong>HttpModules</strong></a>?</li> <li>What is needed to <a href="http://blogs.msdn.com/gduthie/archive/2007/03/14/custom-file-extensions-in-asp-net-2-0.aspx" rel="nofollow"><strong>configure a new extension</strong> for use in ASP.NET</a>? For example, what if I wanted my system to serve ASPX files with a *.jsp extension?</li> <li><a href="http://en.wikipedia.org/wiki/HTTP%5Fcookie" rel="nofollow">How do <strong>cookies</strong> work?</a> What is an example of Cookie abuse?</li> <li><a href="http://en.wikipedia.org/wiki/HTTP%5Fheaders" rel="nofollow">What kind of data is passed via <strong>HTTP Headers</strong>?</a></li> <li>How does <a href="http://msdn.microsoft.com/en-us/library/aa479328.aspx" rel="nofollow"><strong>IIS communicate at runtime</strong> with ASP.NET</a>? Where is ASP.NET at runtime in the different versions of IIS (5 to 7)?</li> </ul> http://stackoverflow.com/questions/271743/whats-the-difference-between-b-and-strong-i-and-em/271776#271776 61 Answer by splattne for What's the difference between <b> and <strong>, <i> and <em>? splattne 2008-11-07T11:07:32Z 2009-10-22T17:26:31Z <p>They have the <strong>same effect on normal web browser rendering engines</strong>, but there is a <strong>fundamental difference</strong> between them.</p> <p><em>As the author writes in this <a href="http://lists.evolt.org/archive/Week-of-Mon-20010521/032901.html" rel="nofollow">discussion list post</a></em>:</p> <p>Think of three different situations:</p> <ul> <li>web browsers</li> <li>blind people</li> <li>mobile phones</li> </ul> <p>"Bold" is a style - when you say "bold a word", people basically know that it means to add more, let's say "ink" around the letters until they stand out more amongst the rest of the letters.</p> <p>That, unfortunately, means nothing to a blind person. And on mobile phones and other PDAs, text is already bold because screen resolution is very small. You can't bold a bold without screwing something up.</p> <p><strong>&lt;b&gt; is a style</strong> - we know what "bold" is supposed to look like.</p> <p><strong>&lt;strong&gt;</strong> however <strong>is an indication of how something should be understood</strong>. "Strong" could (and often does) mean "bold" in a browser, but it could also mean a lower tone for a speaking program like Jaws (for blind people). And strong on a Palm Pilot may be an underline (since you can't bold a bold).</p> <p>HTML was never meant to be about styles. Do <a href="http://www.google.com/search?q=%22Tim+Berners+Lee%22+%22Semantic+Web%22&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla%3Ade%3Aofficial&amp;client=firefox-a" rel="nofollow">some searches</a> for <a href="http://en.wikipedia.org/wiki/Tim%5FBerners-Lee" rel="nofollow">"Tim Berners-Lee"</a> and "the semantic web". &lt;strong&gt; is semantic - it describes the text it surrounds ("this text should be stronger than the rest of the text you've displayed") as opposed to describing <em>how</em> the text it surrounds <em>should be displayed</em> ("this text should be bold").</p> http://stackoverflow.com/questions/221120/asp-net-mvc-ready-for-business-applications-integrating-3rd-party-controls-compo 2 ASP.NET MVC ready for business applications (integrating 3rd party controls/components)? splattne 2008-10-21T08:08:34Z 2009-10-12T07:29:47Z <p>My company has developed (and still continues to develope) a large ASP.NET business application. Our platform is ASP.NET 2.0 using some ASP.NET Ajax. We're <strong>extensively using third-party components</strong>, like webgrids, comboboxes, treeviews, calendar and scheduling controls etc.</p> <p>Now, I don't know a lot of ASP.NET MVC and I'd like to know if there <strong>is a way to use these third-party-controls in the ASP.NET MVC model</strong>. Or do vendors have to rewrite their products in order to make them suitable for ASP.NET MVC?</p> http://stackoverflow.com/questions/413221/precompiled-asp-net-web-application-error-system-web-httpexception-file-filenam 2 Precompiled ASP.NET web application: error "System.Web.HttpException file filename.aspx has not been pre-compiled, and cannot be requested." splattne 2009-01-05T14:17:26Z 2009-10-11T14:22:47Z <p>I've created a web deployment project using the template for Visual Studio 2008 for a ASP.NET 3.5 web application (not web site).</p> <p>I compiled the project which created the files needed for deployment. I copied the resulting folders (bin, static files and all folders with the aspx placeholders etc.) to a staging server where I wanted to test the application.</p> <p>If I <strong>don't</strong> flag the option <strong>"Allow this precompiled site to be updatable"</strong>, I get this error message on every page I load in the browser:</p> <pre> System.Web.HttpException file PAGENAME.aspx has not been pre-compiled, and cannot be requested. </pre> <p>the last line in the stack trace:</p> <pre> System.Web.Compilation.BuildManager.GetVPathBuildResultInternal( VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +8756366 </pre> <p>If I check the option, everything is fine (I guess because the actual aspx/ascx are still there in their original form).</p> <p>Any idea what I am missing here? Is there some setting or special file I forgot to copy?</p> <p><em>Thank you!</em></p> <p>Notes:</p> <ul> <li>I have a few references to third-party assemblies</li> <li>I've checked the bin folder on the staging server. It contains the precompiled assembly which contains all classes (I used Reflector to analyze the assembly).</li> </ul> http://stackoverflow.com/questions/568717/asp-net-masterpages-how-to-insert-markup-in-the-head-section-inside-the-aspx 1 ASP.NET masterpages: how to insert markup in the head section inside the aspx? splattne 2009-02-20T08:24:07Z 2009-10-06T19:04:45Z <p>I know I can <a href="http://weblogs.asp.net/scottgu/archive/2006/03/24/Access-to-a-page_2700_s-head-element-using-ASP.NET-2.0.aspx" rel="nofollow">access the head section of a page which uses a masterpage programmatically</a> this way (in code behind):</p> <p>This is <em>only an example</em> (I'd like to insert scripts and styles etc.):</p> <pre><code>this.Header.Title = "I just set the page's title"; </code></pre> <p>Is there a simple way to do this in a <strong>declarative</strong> way on <strong>in the aspx file itself</strong>? </p> <p>Sometimes it would be handy to insert a <strong>client script</strong> or a <strong>style declaration</strong> or a link to an external resource.</p> http://stackoverflow.com/questions/195270/professional-jquery-based-combobox-control 6 Professional jQuery based Combobox control? splattne 2008-10-12T09:18:53Z 2009-09-29T03:41:41Z <p>Are there any <strong>professional</strong> Combobox controls (dropdown list with autosuggestion) based on the jQuery library?</p> <p>It should be able to handle <strong>large datasets</strong> and have some <strong>skinning</strong> options. A <strong>multi-column result list</strong> would be great too. I'm working with ASP.NET, but it's a not a problem if I had to write a wrapper for it.</p> <p><img src="http://img386.imageshack.us/img386/2987/comboboxts9.png" alt="alt text" /></p> <p><em>I'm already using a third-party control, but I ran into some compatibilty issues between two vendor's controls. Well, I want to get rid of this kind of dependencies.</em></p> http://stackoverflow.com/questions/250055/asp-net-warning-on-changed-data-closing-windows 3 ASP.NET: Warning on changed data closing windows splattne 2008-10-30T12:49:27Z 2009-09-29T01:40:20Z <p>I'd like to warn users when they <strong>try to close a browser window</strong> if they <strong>didn't save</strong> the changes they made in the web form.</p> <p>I'm using ASP.NET 3.5 (with ASP.NET Ajax).</p> <p>Is there a common solution which I could easily implement?</p> <p><em>EDIT: maybe my question wasn't clear:</em> I am specifically looking for a way which integrates gracefully in the <strong>ASP.NET</strong> Server Controls methodology.</p> http://stackoverflow.com/questions/1410877/using-microsoft-ink-in-asp-net-on-windows-server-2008 2 Using Microsoft.Ink in ASP.NET on Windows Server 2008 splattne 2009-09-11T13:30:39Z 2009-09-15T04:13:35Z <p>I'm developing an ASP.NET web application. The site generates PDF files which contain images of handwritten content (signatures etc.). The bitmap images are created by some methods of the Microsoft.Ink library, converting MS Ink data (generated on a Tablet PC and transferred to the site.).</p> <p>Now, it works like charm on my Vista development machine, but not on the production server, a Windows Server 2008 64bit machine. There is some unmanaged code for Microsoft.Ink besides the .NET assemblies I deployed. So I installed the Tablet PC SDK 1.7 on the server - but I still get some missing COM component error messages in ASP.NET (COMException 0x80040154):</p> <blockquote> <p>Retrieving the COM class factory for component with CLSID {937C1A34-151D-4610-9CA6-A8CC9BDB5D83} failed due to the following error: 80040154.</p> </blockquote> <p>I've read that <a href="http://msdn.microsoft.com/en-us/library/ee318410%28VS.85%29.aspx" rel="nofollow">Windows Server 2008 R2 has the option to install Handwriting Recognition</a>. Is there a package for Windows Server 2008 as well? I searched on Google, but I couldn't find a solution.</p> <p><em>Thanks!</em></p> http://stackoverflow.com/questions/161403/what-is-your-favorite-firebug-tip-or-trick 12 What is your favorite Firebug tip or trick? splattne 2008-10-02T08:48:41Z 2009-09-13T19:18:16Z <p>I think every web developer loves Firefox's <a href="http://getfirebug.com/" rel="nofollow">Firebug extension</a> for solving CSS, Javascript or HTTP problems.</p> <p>I use it very often, but I'm sure that I'm not aware of some hidden gems. What is your <strong>favorite (not evident) trick or tip</strong> for Firebug?</p> http://stackoverflow.com/questions/191136/ui-components-for-windows-mobile-applications-net-compact-framework 7 UI Components for Windows Mobile Applications (.NET Compact Framework) splattne 2008-10-10T12:57:41Z 2009-09-10T05:15:08Z <p>Applications which run on mobile devices have special user interface requirements. I think Apple did a great job introducing innovative controls on the iPhone/iPod touch platform.</p> <p>Now, I have to design an application for the Windows Mobile platform using the .NET Compact Framework (Visual Studio 2008). I wonder if there are some commercial or open source UI control sets available which are similar to the iPhone / iPod touch UI elements:</p> <ul> <li>Scrolling panels based on gestures</li> <li>Instead of a dropdownlist: a new panel with a large list of items</li> <li>Sliding panels</li> <li><em>etc.</em></li> </ul> <p>I couldn't find any useful products/code. Maybe there is somebody out there with more experience who could help.</p> http://stackoverflow.com/questions/1170844/how-to-create-a-sql-compact-3-5-database-for-windows-mobile-in-an-asp-net-web-app 2 How to create a SQL Compact 3.5 database for Windows Mobile in an ASP.NET web application? splattne 2009-07-23T10:17:07Z 2009-08-28T16:06:53Z <p>In an ASP.NET web application I have to dynamically create a <strong>SQL Compact 3.5 database</strong> for a Windows Mobile Compact Framework application from a data source (SQL Server). </p> <p>I have to create the database file, needed objects (tables, ...) and fill the tables with data. The client application (Windows Mobile device ) will download that generated file.</p> <p>What prerequisites (referenced assemblies, installations) do I need - or: is this even possible?</p> http://stackoverflow.com/questions/1311662/php-script-download-ics-file/1311703#1311703 1 Answer by splattne for PHP script: download ics file splattne 2009-08-21T12:41:59Z 2009-08-21T12:41:59Z <pre><code>text/calendar </code></pre> <p>From the <a href="http://www.ietf.org/rfc/rfc2447.txt" rel="nofollow">RFC 2447 iCalendar Message-Based Interoperability Protocol</a>:</p> <blockquote> <p><strong>2.1 MIME Media Type</strong></p> <p>A MIME entity containing content information formatted according to<br /> this document will be referenced as a "text/calendar" content type. It is assumed that this content type will be transported through a MIME electronic mail transport.</p> </blockquote> http://stackoverflow.com/questions/404936/stupid-but-commercially-successful-software 21 Stupid, but commercially successful software splattne 2009-01-01T13:19:26Z 2009-08-18T13:45:56Z <p><a href="http://venturebeat.com/2008/12/23/iphone-fart-app-pulls-in-nearly-10000-a-day/" rel="nofollow">Recently I read</a> that <a href="http://twitter.com/joelcomm" rel="nofollow">the author</a> of the 99 cent <strong>iFart Mobile</strong> application for the iPhone makes nearly 10,000 US$ a day (!)¹ with his flatulence simulator.</p> <p>Do you know of any other <strong>silly or useless, but commercially successful</strong> software products? Perhaps there is a pattern and we all can find recession-proof software niches as competition heats up. ;-)</p> <p><img src="http://edibleapple.com/wp-content/uploads/2008/12/fartscreen-207x300.png" alt="alt text" /></p> <p>¹ <em>and on the Christmas day alone 40,000 downloads = 30,000 US$ - a tasteful present, isn't it? No silent night last year...</em></p> http://stackoverflow.com/questions/404936/stupid-but-commercially-successful-software/405146#405146 18 Answer by splattne for Stupid, but commercially successful software splattne 2009-01-01T16:53:46Z 2009-08-18T13:45:56Z <p>For those of you who remember <strong>SoftRAM</strong> (category: <a href="http://www.computer-guru.com/placebo.html" rel="nofollow">Placebo software</a>):</p> <p><img src="http://thelongrunblog.files.wordpress.com/2008/09/sofram.gif" alt="SoftRAM screenshot" /></p> <blockquote> <p>SoftRAM and SoftRAM95 were system software products which claimed to "double" the available memory in Microsoft Windows without the need for a hardware upgrade. </p> <p>In July 1996, Developers Syncronys settled charges brought by the Federal Trade Commission of "false and misleading" claims in relation to the capability of the software. The product was rated the third "Worst Tech Product of All Time" by PC World in 2006.</p> </blockquote> <p>(from the <a href="http://en.wikipedia.org/wiki/SoftRAM" rel="nofollow">SoftRAM Wikipedia article</a>)</p> http://stackoverflow.com/questions/797992/how-to-change-the-column-order-in-a-sql-server-compact-edition-table-schema 0 How to change the column order in a SQL Server Compact Edition table schema? splattne 2009-04-28T13:41:21Z 2009-08-13T12:23:31Z <p>I'm using Visual Studio 2008 to design a <strong>SQL Server Compact Edition</strong> database (*.sdf). I had to change the schema of one of my tables adding a new column. </p> <p>I want to <strong>"move" that new column</strong> from the bottom to a different position in the field list. How can I do this in the Visual Studio designer?</p> <p><em>EDIT: I know that from a pure technical view point the order of the columns doesn't matter. I'm prototyping an application, so I have to change the schema a couple of times. If, for example I have to change the primary key, it would be "ugly" having the most important column at the end. Other developers looking at the code would be confused, I think. It's a matter of esthetics.</em></p> http://stackoverflow.com/questions/430774/how-to-minimize-customer-service-help-desk-time-for-programmers 10 How to minimize customer service help desk time for programmers? splattne 2009-01-10T09:13:36Z 2009-07-31T20:13:15Z <p>Most software companies have different levels of support for the customer service help desk in order to protect programmers spending a lot of time explaining things to customers or trying to understand problems and bugs.</p> <p>But there inevitably are situations where programmers have to interact one-to-one with customers. For example, if first-level support doesn't have all the information to ask the right questions or when there is a bug which only a programmer can track down.</p> <p>Direct programmer-to-customer can be time-consuming. Also, customers could become accustomed talking to a single programmer who normally has more insight into the application and therefore could solve problem in a shorter time span.</p> <p>So, what can be done in order to <strong>minimize the help desk time for programmers</strong>? What guidelines, concepts or tools should the whole team (helpdesk and development) adopt?</p> <p><em>P.S.: A controversial point of view is: sometimes programmers have to hear the users' complaints or problems first-hand in order to really understand some difficulties or problems.</em> </p> http://stackoverflow.com/questions/1170844/how-to-create-a-sql-compact-3-5-database-for-windows-mobile-in-an-asp-net-web-app/1171792#1171792 1 Answer by splattne for How to create a SQL Compact 3.5 database for Windows Mobile in an ASP.NET web application? splattne 2009-07-23T13:37:42Z 2009-07-23T13:37:42Z <p>Essentially Henk's answer points in the right direction. But there are some caveats. The SQLServerCE assembly throws runtime errors.</p> <p>I found these two helpful links:</p> <ul> <li><a href="http://blogs.msdn.com/stevelasker/archive/2006/11/27/sql-server-compact-edition-under-asp-net-and-iis.aspx" rel="nofollow">SQL Server Compact Edition under ASP.net and IIS</a> (Steve Lasker's blog)</li> <li><a href="http://www.zorched.net/2007/01/17/using-sql-compact-edition-under-aspnet/" rel="nofollow">Using SQL Compact Edition Under ASP.NET</a> by Geoff Lane </li> </ul> <p>In order to use the assembly, you have to call this method:</p> <pre><code>AppDomain.CurrentDomain.SetData("SQLServerEverywhereUnderWebHosting", true) </code></pre> http://stackoverflow.com/questions/275808/which-net-framework-version-will-be-included-in-windows-7 2 Which .NET framework version will be included in Windows 7? splattne 2008-11-09T10:28:25Z 2009-07-22T11:15:21Z <p>Does anybody know if Microsoft has already decided which <strong>version of the .NET framework will be shipped in Windows 7</strong> next year (2009)? Will it .NET 3.5 (SP 1) or maybe 4.0?</p> http://stackoverflow.com/questions/1058275/how-do-browsers-search-boxes-work/1058278#1058278 4 Answer by splattne for How do browsers' Search boxes work? splattne 2009-06-28T07:30:09Z 2009-07-17T18:14:35Z <p>You can create so called "Search Providers" for your sites. You should have a search page on your site which accepts the search keywords as query string in your URL, like</p> <pre><code> http://www.example.com/search?q=meaning+of+life </code></pre> <p>This should work work Google Custom Search as well.</p> <p>You'll have to create a special XML file (call it <code>SearchProvider.xml</code>, for example) and put it on your web server:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"&gt; &lt;ShortName&gt;Example Search Provider&lt;/ShortName&gt; &lt;Description&gt;Finds answers to the most important question of the universe&lt;/Description&gt; &lt;InputEncoding&gt;UTF-8&lt;/InputEncoding&gt; &lt;Url type="text/html" template=" http://www.example.com/search?q={searchTerms}"/&gt; &lt;/OpenSearchDescription&gt; </code></pre> <p>Then, you'll need to insert a special link tag in your page's header section:</p> <pre><code> &lt;link title="Example Search Provider" rel="search" type="application/opensearchdescription+xml" href="http://www.example.com/SearchProvider.xml" /&gt; </code></pre> <p>You could also insert a link to your page, which allows your users to add the search provider to the browser:</p> <pre><code>&lt;a href="#" onclick="javascript:window.external.AddSearchProvider('http://www.example.com/SearchProvider.xml');"&gt; Example Search Provider&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/275781/server-mappath-server-mappath-server-mappath-server-mappath/275791#275791 16 Answer by splattne for server.mappath("."), server.mappath("~"), server.mappath(@"\"), server.mappath("/"). What is the difference? splattne 2008-11-09T10:01:15Z 2009-07-17T10:04:45Z <p><strong>Server.MapPath</strong> specifies the relative or virtual path to map <strong>to a physical directory</strong>.</p> <ul> <li>Server.MapPath(".") returns the current physical directory of the file (e.g. aspx) being executed</li> <li>Server.MapPath("..") returns the parent directory</li> <li>Server.MapPath("~") returns the physical path to the root of the application</li> <li>Server.MapPath("/") returns the physical path to the root of the domain name (is not necessarily the same as the root of the application)</li> </ul> <p><em>An example:</em></p> <p>Let's say you pointed a web site application (<a href="http://www.example.com/" rel="nofollow">http://www.example.com/</a>) to</p> <pre><code>C:\Inetpub\wwwroot </code></pre> <p>and installed your shop application (sub web as virtual directory in IIS, marked as application) in </p> <pre><code>D:\WebApps\shop </code></pre> <p>If, for example, you call Server.MapPath in following request:</p> <pre><code>http://www.example.com/shop/product/GetProduct.aspx?id=2342 </code></pre> <p>then,</p> <ul> <li>Server.MapPath(".") returns <code>D:\WebApps\shop\products</code></li> <li>Server.MapPath("..") returns <code>D:\WebApps\shop</code></li> <li>Server.MapPath("~") returns <code>D:\WebApps\shop</code></li> <li>Server.MapPath("/") returns <code>C:\Inetpub\wwwroot</code></li> <li>Server.MapPath("/shop") returns <code>D:\WebApps\shop</code></li> </ul> <p>If Path starts with either a forward (<code>/</code>) or backward slash (<code>\</code>), the MapPath method returns a path as if Path were a full, virtual path. </p> <p>If Path doesn't start with a slash, the MapPath method returns a path relative to the directory of the request being processed.</p> <p><em>Note: in C#, @ is the verbatim literal string operator meaning that the string should be used "as is" and not be processed for escape sequences.</em></p> http://stackoverflow.com/questions/1118116/windowsforms-how-to-draw-lines-bars-on-a-datagridview 0 Windowsforms: How to draw lines/bars on a DataGridView? splattne 2009-07-13T07:31:57Z 2009-07-13T09:56:05Z <p>I'm using a DataGridView in a Windows application (.NET 3.5) showing some colored bars (basically "tasks in time"):</p> <p><img src="http://img195.imageshack.us/img195/879/datagridview1.png" alt="DataGridView 1" /></p> <p>What I need now is, to show a custom graphical "completed" bar on the cells depending on a percentage value. Here is a photoshopped image:</p> <p><img src="http://img38.imageshack.us/img38/5615/datagridview2.png" alt="DataGridView 2" /></p> <p>Any hint how I could approach the problem or a creative solution?</p> <p><em>Thanks!</em></p> <p><strong>Edit:</strong> I had to redraw the cell, becuase it gets "lost." Here is the (VB.NET) code that works:</p> <pre><code>Private Sub DataGridView_CellPainting(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellPaintingEventArgs) Handles DataGridView.CellPainting If e.ColumnIndex &lt; FIRST_DATA_COLUMN OrElse e.RowIndex &lt; 0 Then Return If e.Value Is Nothing Then Return Dim BarValue As Integer = DirectCast(e.Value, Integer) If BarValue = 0 Then Return Dim BackColorBrush As New SolidBrush(e.CellStyle.BackColor) Dim GridBrush As New SolidBrush(Me.DataGridView.GridColor) Dim GridLinePen As New Pen(GridBrush) ' -- Erase the cell e.Graphics.FillRectangle(BackColorBrush, e.CellBounds) ' -- Draw the grid lines (only the right and bottom lines; DataGridView takes care of the others) e.Graphics.DrawLine(GridLinePen, e.CellBounds.Left, e.CellBounds.Bottom - 1, e.CellBounds.Right - 1, e.CellBounds.Bottom - 1) e.Graphics.DrawLine(GridLinePen, e.CellBounds.Right - 1, e.CellBounds.Top, e.CellBounds.Right - 1, e.CellBounds.Bottom - 1) ' -- Paint progress bar Dim ProgressBarBrush As New SolidBrush(Color.Green) Dim CellProgressBarRect As New Rectangle(e.CellBounds.X, e.CellBounds.Y + CELL_HEIGHT - PROGRESS_BAR_HEIGHT, BarValue, PROGRESS_BAR_HEIGHT) e.Graphics.FillRectangle(ProgressBarBrush, CellProgressBarRect) e.Handled = True End Sub </code></pre> http://stackoverflow.com/questions/1081589/change-response-type-in-asp/1081593#1081593 2 Answer by splattne for Change Response type in asp splattne 2009-07-04T05:41:27Z 2009-07-04T10:26:43Z <p>I'm not sure what you mean. There can only be one ContentType per response. The browser will interpret the whole content of the response as xml.</p> <p>If you want to get two files with different content types, you'll have to call them separately.</p> http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008/1052647#1052647 1 Answer by splattne for How do i change the intellisense settings in VS2008? splattne 2009-06-27T11:11:18Z 2009-06-27T11:11:18Z <p>By default, most of the IntelliSense options are in effect. You can turn off an option by default and invoke it through a menu command or keystroke combination.</p> <p>Even when an IntelliSense option is on by default, you can explicitly invoke it. You can also change the default key mappings for each option.</p> <p>To turn IntelliSense options <strong>off</strong> by default</p> <ol> <li>On the Tools menu, click Options.</li> <li>Select the Text Editor folder.</li> <li>Select the folder for the language you want to customize IntelliSense.</li> <li>In the General property page, clear check boxes for IntelliSense features that you do not want: <ul> <li>Auto list members applies to List Members</li> <li>Parameter information applies to Parameter Info</li> </ul></li> </ol> <p>In the IntelliSense property page, clear text box options or check box options for IntelliSense features that you do not want:</p> <ul> <li>Show completion list after a character is typed</li> <li>Committed by typing the following characters</li> <li>Committed by pressing the space bar</li> <li>IntelliSense pre-selects most recently used members applies to IntelliSense for Most Recently Used Members</li> </ul> <p><em>Note: If you change the IntelliSense settings, your new settings will apply to IntelliSense in both the Code Editor and the Immediate Mode Command Window.</em> </p> <p>For further information there is an page on MSDN: <a href="http://msdn.microsoft.com/en-us/library/hcw1s69b.aspx" rel="nofollow">Using Intellisense</a> </p> http://stackoverflow.com/questions/274725/iframe-content-depending-on-referring-page/274732#274732 Comment by splattne on Iframe content depending on referring page splattne 2009-11-24T20:33:26Z 2009-11-24T20:33:26Z Thank you, vsync! http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c/69951#69951 Comment by splattne on Howto articles for iPhone development, Objective C splattne 2009-11-20T20:11:36Z 2009-11-20T20:11:36Z @rpetrich: thanks! Fixed the link. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/1206263#1206263 Comment by splattne on What's the most egregious pop culture perversion of programming? splattne 2009-10-24T14:57:18Z 2009-10-24T14:57:18Z The producers could not afford an Office 2007 license on that PC. http://stackoverflow.com/questions/60919/is-sqlcommand-dispose-enough/60923#60923 Comment by splattne on Is SqlCommand.Dispose enough? splattne 2009-10-01T13:21:57Z 2009-10-01T13:21:57Z Think of ASP.NET application. If there is a big amount of parallel workload it absolutely makes sense creating the connection when needed and releasing them soon. Otherwise you will soon run into connection pool issues or performance problems. http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238231#238231 Comment by splattne on What is the best UI you've ever used? splattne 2009-09-25T14:23:46Z 2009-09-25T14:23:46Z @Travis Beale: ALT+CTRL+I should do the trick (another ALT+CTRL+I to exit preview) http://stackoverflow.com/questions/1410877/using-microsoft-ink-in-asp-net-on-windows-server-2008/1425091#1425091 Comment by splattne on Using Microsoft.Ink in ASP.NET on Windows Server 2008 splattne 2009-09-20T07:13:18Z 2009-09-20T07:13:18Z Thank you very much for your effort. But I wasn't able to solve my problem this way. http://stackoverflow.com/questions/1410877/using-microsoft-ink-in-asp-net-on-windows-server-2008/1419702#1419702 Comment by splattne on Using Microsoft.Ink in ASP.NET on Windows Server 2008 splattne 2009-09-20T07:12:34Z 2009-09-20T07:12:34Z I accepted this answer, even if I didn't have to &quot;compile x86 only&quot;. I just changed the application pool to 32bit only. That was enough http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/106173#106173 Comment by splattne on What's your favorite "programmer" cartoon? splattne 2009-08-11T15:11:46Z 2009-08-11T15:11:46Z I like the for loop: for (int i=1;i&lt;=numBrainCells;i++) { turnOn(brain[i]) system.out.println(&quot;Yawn&quot;); } http://stackoverflow.com/questions/878345/reflectedschemas-folder-in-the-users-appdata-folder-visual-studio/1130954#1130954 Comment by splattne on ReflectedSchemas folder in the user's AppData folder (Visual Studio) splattne 2009-07-15T17:47:50Z 2009-07-15T17:47:50Z What?!? Jeez... that's a lot of GB. http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/190868#190868 Comment by splattne on Hidden Features of VB.NET? splattne 2009-07-14T10:04:04Z 2009-07-14T10:04:04Z FTW = For the Win! <a href="http://www.urbandictionary.com/define.php?term=ftw" rel="nofollow">urbandictionary.com/define.php?term=ftw/&hellip;</a> http://stackoverflow.com/questions/1118116/windowsforms-how-to-draw-lines-bars-on-a-datagridview/1118164#1118164 Comment by splattne on Windowsforms: How to draw lines/bars on a DataGridView? splattne 2009-07-13T10:27:13Z 2009-07-13T10:27:13Z The logic of the percentage is done in another method. It's the cell value. http://stackoverflow.com/questions/1118116/windowsforms-how-to-draw-lines-bars-on-a-datagridview/1118164#1118164 Comment by splattne on Windowsforms: How to draw lines/bars on a DataGridView? splattne 2009-07-13T09:56:32Z 2009-07-13T09:56:32Z It works, thanks. See my updated question. http://stackoverflow.com/questions/1118116/windowsforms-how-to-draw-lines-bars-on-a-datagridview/1118164#1118164 Comment by splattne on Windowsforms: How to draw lines/bars on a DataGridView? splattne 2009-07-13T07:53:47Z 2009-07-13T07:53:47Z Yes, I thought I had to do that. A question: if I do a custom draw hooking into cell painting event, I &quot;lose&quot; the normal layout and have to redraw the cell? http://stackoverflow.com/questions/305223/jon-skeet-facts/320738#320738 Comment by splattne on Jon Skeet Facts? splattne 2009-06-27T15:14:47Z 2009-06-27T15:14:47Z @presario: He's still reciting... http://stackoverflow.com/questions/1048939/memory-profiler-for-net-compact-framework/1049061#1049061 Comment by splattne on Memory profiler for .NET Compact Framework splattne 2009-06-26T13:22:10Z 2009-06-26T13:22:10Z Thanks, but I was looking for a memory profiler: &quot;The EQATEC Profiler is a code profiler, not a memory profiler. So it's all about making your app run faster, not about tracking objects and memory.&quot;