User AlexDuggleby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T22:21:27Z http://stackoverflow.com/feeds/user/5790 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1588039/sql-command-isnull-for-odbc-connection 0 SQL Command ISNULL for ODBC Connection AlexDuggleby 2009-10-19T10:55:24Z 2009-10-19T13:04:30Z <p>I'm connected to an OpenEdge DataServer via ODBC (not our product, we are just accessing their database, I hardly have any information and certainly no help from the other side).</p> <p>Anyhow, I just need to execute a simple Select, add a couple of rows and I need the equivalent of an IsNull statement.</p> <p>Basically I'd like to execute</p> <pre><code>SELECT ISNULL(NULL,'test') </code></pre> <p>This fails with a Syntax Error. I've looked around at something they misleadingly call a "documentation" but there are only references to SP_SQL_ISNULL but I can't get that to work either. I'm fit in T-SQL, so any pointers in any direction appretiated, even if it's just a RTFM with a link to TFM :)</p> <p>Thanks</p> http://stackoverflow.com/questions/1588039/sql-command-isnull-for-odbc-connection/1588569#1588569 0 Answer by AlexDuggleby for SQL Command ISNULL for ODBC Connection AlexDuggleby 2009-10-19T13:03:58Z 2009-10-19T13:03:58Z <p>Thanks to Catalin and this <a href="http://stackoverflow.com/questions/65071/isnull-function-in-db2-sql">question</a> I got on the right track. I kept thinking I needed a OpenEdge specific function but actually I needed to use only ODBC SQL syntax.</p> <p>To get what </p> <pre><code>ISNULL(col,4) </code></pre> <p>does you can use </p> <pre><code>COALESCE(col,4) </code></pre> <p>which "returns the data type of expression with the highest data type precedence. If all expressions are nonnullable, the result is typed as nonnullable."<a href="http://msdn.microsoft.com/en-us/library/ms190349.aspx" rel="nofollow">MSDN</a></p> <p>Basically it will convert to 4 if the value is null (and therefore not convertable).</p> http://stackoverflow.com/questions/1559591/troubleshooting-plk-verification-for-visual-studio-package-in-a-vsip-development 0 Troubleshooting Plk Verification for Visual Studio Package in a VSIP Development Edition AlexDuggleby 2009-10-13T11:15:50Z 2009-10-15T13:40:25Z <p>I have a custom domain specific language project which was developed a while back, was deployed and run on the same machine inside the normal Visual Studio hive with no problems.</p> <p>Server has been reinstalled and I'm trying to setup the environment again, so that the normal hive (which is a Visual Studio VSIP Edition SP1, with Visual Studio 2008 SDK) can use the DSL.</p> <p>But the VSPackage is not loading. The Package Load Analyzer gives me a "Plk Verification" error. "Failed to read one of the following values for the package {guid} - Company Name, Package Guid, Product Name, Product Version, Minimum Edition."</p> <p>Now I understand if I was deploying to a non VSIP Edition (or running devenv with /noVSIP) I would need to get a Plk from Microsoft, but since I am running on the same development machine where the DSL is also developed, there should be a Development Plk. Visual Studio also tells me at the start:</p> <pre><code>VSIP: Developer edition, all third-party packages allowed to load. </code></pre> <p>If I start the DSL project and debug it in the experimental hive then everything works fine, the package is loaded and all custom editors are displayed.</p> <p>Any idea on how to further troubleshoot this?</p> <p>Is it possible that the problem lies in that the DSL project was created on a different server and even though I've recompiled everything on the new server that the development key is somehow related to the server and is attached in the project files somewhere? If so, any idea where?</p> http://stackoverflow.com/questions/1516687/how-do-you-add-the-values-from-input-fields-and-update-another-field-with-the-res/1516719#1516719 1 Answer by AlexDuggleby for How do you add the values from input fields and update another field with the result in jQuery? AlexDuggleby 2009-10-04T15:50:27Z 2009-10-04T15:50:27Z <p>Try this</p> <pre><code>$(".addme").bind("change",function(){ var _sum = 0; $(".addme").each(function(i){ _sum += parseInt($(this).val()); }); $("#result").val(_sum); }); </code></pre> <p>HTH Alex</p> http://stackoverflow.com/questions/1513445/authenticated-onto-two-seperate-sites-with-one-login-and-using-an-iframe-possi/1513476#1513476 1 Answer by AlexDuggleby for Authenticated onto two seperate sites with one login (and using an IFrame). Possible? AlexDuggleby 2009-10-03T10:55:10Z 2009-10-03T11:51:30Z <p>(I suppose OpenID or WS*-Federation is out of the question?)</p> <p>If the credentials are the same, couldn't you simply submit the credentials to the iframe before you submit your own login form?</p> <p>Or if you want to check credentials first, then send them to your server, check return them back to the client as a javascript snippet that then does the iframe authentication. (But be aware you would be sending <strong>credentials</strong> back to the client <strong>as javascript</strong>.)</p> <p>An example that might work for you:</p> <p>Say your login Url is <a href="http://yourdomain/login" rel="nofollow">http://yourdomain/login</a> and you also need to login to <a href="http://thirdparty/login" rel="nofollow">http://thirdparty/login</a></p> <p>yourdomain/login wants two post variables "username" and "pwd" whereas thirdparty/login wants "uname" and "password".</p> <p>Try to include jQuery in your project (there are ways to do it in javascript by itself, but you'll have to check what jQuery does in the background - but I strongly suggest not reinventing the wheel if you don't have to).</p> <pre><code>// this is the jQuery startup function, called once the page is loaded $(function() { // register an event for the form submit $("form[@action*='login']").submit(function(event){ // get username and pwd from the form var _user = $("#username").val(); var _password = $("#pwd").val(); // and submit to the second login page $.post("http://thirdparty/login", { user: _user, password: _password } ); // once the method returns and you don't do return false then the login form will be submitted as usual. }); }); </code></pre> <p>There may be one issue here that is that you are posting to a different url than the server that served the page. This may not be allowed, but you could bypass it by sending the post action of the original login page to the thirdparty page and login to your own system using the code above.</p> <p>Reference: JQuery Post: <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.post</a> JQuery Intercept Form Submit: <a href="http://blog.james-carr.org/2008/01/17/jquery-binding-submit-on-a-forms-action-attribute/" rel="nofollow">http://blog.james-carr.org/2008/01/17/jquery-binding-submit-on-a-forms-action-attribute/</a></p> http://stackoverflow.com/questions/1513338/pros-and-cons-of-database-events/1513509#1513509 2 Answer by AlexDuggleby for Pros and cons of database events AlexDuggleby 2009-10-03T11:16:31Z 2009-10-03T11:16:31Z <p>Definitely use an async method. If you are on a Microsoft SQL platform check out a combination of </p> <p>1) Change Tracking available SQL Version > 2008: <a href="http://msdn.microsoft.com/en-us/library/cc280462.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc280462.aspx</a></p> <p>and </p> <p>2) SQL Service Broker, which you can register for events with. (1. actually uses 2. under the hood IIRC): <a href="http://msdn.microsoft.com/en-us/library/ms345108%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms345108%28SQL.90%29.aspx</a></p> <p>If you have to revert to triggers definately keep the impact of the trigger low. For example create your own log of changes and process it from somewhere else. Don't write an update and find out who to information in the same trigger as the change itself. It will slow down your queries a lot.</p> <p>There are also options depending on what data layer technology you use: NHibernate has the concept of interceptors, same on the Enterprise Framework side. But they do not run in the database, which has advantages and disadvantages.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1513477/mass-mailing-html-newsletter-in-asp-net/1513497#1513497 4 Answer by AlexDuggleby for Mass mailing HTML-newsletter in Asp.Net AlexDuggleby 2009-10-03T11:07:26Z 2009-10-03T11:07:26Z <p>Hope these are helpfull:</p> <ol> <li><p>Use MailDefinition as a templating engine <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.maildefinition.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.maildefinition.aspx</a> If your numbers are large you may look into not using SMTP as a transport protocol, but rather generating files for each email you wish to send and then putting them directly into the "Drop" folder of your SMTP server. Mirosoft SMTP Server allows this quite easily.</p></li> <li><p>Use a unique bounce back email address for each email (but include a reply-to to a real address, such as office (at) yourdomain.com. Let those bounce back email addresses point to one common account and after sending your newsletter remove all addresses that bounced from your database. </p></li> <li><p>As for fault tolerance, I don't think I quite understand. Why would you only want half to ge the newsletter? I would catch any server related issues and stop the processing immediately, and any client related issues (client's email does not work, see 2.) are either skipped and logged (if detected during processing) or processed later (if detected later).</p></li> <li><p>Depending on your local laws check opt-in/opt-out policies.</p></li> <li><p>Also take a look at embedding images directly into the html (a not well known fact is that you can embed images directly into ) this will usually make email size larger but it will let Outlook display those images directly without going to your server. Of course if you want newsletter tracking via an image beacon or similar then server images are what you want.</p></li> <li><p>Of course check all common email clients for correct display. AFAIK it is almost impossible to send a format that each and every client will display correctly unless you send plain text :)</p></li> </ol> http://stackoverflow.com/questions/1509114/is-it-necessary-have-someone-registered-to-an-event-before-you-can-raise-it/1509133#1509133 1 Answer by AlexDuggleby for Is it necessary have someone registered to an event before you can raise it? AlexDuggleby 2009-10-02T12:04:30Z 2009-10-02T12:04:30Z <p>Check for null.</p> <pre><code>if (Object.Event != null) Object.Event(); </code></pre> <p>HTH Alex</p> http://stackoverflow.com/questions/1509106/why-didnt-the-linq-designers-stick-with-using-the-way-sql-is-written-today/1509126#1509126 4 Answer by AlexDuggleby for Why didn't the LINQ designers stick with using the way sql is written today? AlexDuggleby 2009-10-02T12:03:29Z 2009-10-02T12:03:29Z <p>It is often cited that the reason is Intellisense. Because if you start writing</p> <pre><code>select p. </code></pre> <p>the compiler can't say what properties to show you. </p> <p>but if you start with</p> <pre><code>from person p select p. </code></pre> <p>it knows to look up properties on the person object.</p> <p>HTH alex</p> http://stackoverflow.com/questions/1509060/how-can-i-share-a-resource-file-between-projects-in-visual-studio/1509072#1509072 2 Answer by AlexDuggleby for How can I share a resource file between projects in Visual Studio? AlexDuggleby 2009-10-02T11:51:20Z 2009-10-02T11:51:20Z <p>You can add a resx to an empty class project, change the visibility type on the editor from internal to public and then reference that project from both other projects.</p> <p><a href="http://blog.dmbcllc.com/wp-content/uploads/2009/04/image.png" rel="nofollow">http://blog.dmbcllc.com/wp-content/uploads/2009/04/image.png</a> (from: <a href="http://blog.dmbcllc.com/2009/04/02/silverlight-resx-files-and-internationalization/" rel="nofollow">http://blog.dmbcllc.com/2009/04/02/silverlight-resx-files-and-internationalization/</a>)</p> http://stackoverflow.com/questions/1509044/showing-a-spinner-during-an-ajax-request/1509062#1509062 2 Answer by AlexDuggleby for Showing a spinner during an AJAX request? AlexDuggleby 2009-10-02T11:49:49Z 2009-10-02T11:49:49Z <p>Do you use jQuery?</p> <p>If so you can use:</p> <p>ajaxStart &amp; ajaxStop: <a href="http://docs.jquery.com/Ajax" rel="nofollow">http://docs.jquery.com/Ajax</a></p> <p>For example:</p> <pre><code>$(function(){ // hide it first $("#spinner").hide(); // when an ajax request starts, show spinner $.ajaxStart(function(){ $("#spinner").show(); }); // when an ajax request complets, hide spinner $.ajaxStop(function(){ $("#spinner").hide(); }); </code></pre> <p>});</p> <p>You can fine tune a little with a request counter that increments and decrements in case you have a lot of simultaneous requests.</p> <p>If you don't use jQuery, check out the jQuery Source code for which events ajaxStart actually register in plain old javascript.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1508784/how-to-unbind-the-event/1509049#1509049 0 Answer by AlexDuggleby for how to unbind the event AlexDuggleby 2009-10-02T11:45:18Z 2009-10-02T11:45:18Z <p>Additionally jQuery supports namespaces.</p> <p>For example say you have change handlers that do validation and change handlers that do help text hovering.</p> <p>You could register:</p> <pre><code>$("#foo").bind("change.validation", doValidation() ); </code></pre> <p>and </p> <pre><code>$("#foo").bind("change.helptext", toggleHelptext() ); </code></pre> <p>and then you can unbind a specific set before re-adding validation, e.g.</p> <pre><code>$("#foo").unbind("change.validation"); $("#foo").bind("change.validation", doValidation() ); </code></pre> <p>HTH Alex</p> http://stackoverflow.com/questions/1509010/c-how-to-make-a-web-bot-or-something/1509031#1509031 1 Answer by AlexDuggleby for [C#] How to make a web bot? (or something) AlexDuggleby 2009-10-02T11:40:03Z 2009-10-02T11:40:03Z <p>Also have a look at the Watin project: <a href="http://www.codeproject.com/KB/aspnet/WatiN.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/WatiN.aspx</a></p> <p>It's more used for web app testing, but for automating web forms it has great features out of the box.</p> <p>For a more neutral solution you may also want to check out: <a href="http://seleniumhq.org/" rel="nofollow">http://seleniumhq.org/</a> Again it's a web app testing framework but it's useful for what you want.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1508668/why-is-there-no-string-isnumeric-function-in-c/1508696#1508696 1 Answer by AlexDuggleby for Why is there no String.IsNumeric Function in C# AlexDuggleby 2009-10-02T10:04:44Z 2009-10-02T10:04:44Z <p>IIRC there ist Char.IsDigit(char c);</p> <p>Therefore I think that should work:</p> <pre><code>string _temp = "12341234"; bool _isNumeric = _temp.ToCharArray().All(x =&gt; Char.IsDigit(x)); </code></pre> <p>And you could wrap that as an extension methods if you like.</p> http://stackoverflow.com/questions/1508216/mvc-style-filters-on-asmx-web-services-is-it-possible/1508297#1508297 1 Answer by AlexDuggleby for MVC Style Filters on ASMX Web Services, is it possible? AlexDuggleby 2009-10-02T08:21:57Z 2009-10-02T08:21:57Z <p>Since ASMX are also server by the ASP.NET pipeline, you could just use HttpModules, which give you a lot of control on the way in and the way out.</p> <p>Here's a reference and an example: <a href="http://msdn.microsoft.com/en-us/library/aa719858%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa719858%28VS.71%29.aspx</a></p> <p>If you want to make it very "MVC-like" then you would write a custom http module that check the webservice for attributes such as [Authorize] etc. Since ASP.NET MVC is open source you may just use parts of that as a reference how they check for attributes etc and then build it into your HTTPModule.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1503962/server-generated-printing-printing-to-printer-closest-to-user/1506325#1506325 0 Answer by AlexDuggleby for Server generated printing printing to printer closest to user AlexDuggleby 2009-10-01T20:37:03Z 2009-10-01T20:37:03Z <p>How about using this technique to get the IP address of the client using JavaScript then sending it back to the server:</p> <p><a href="http://www.gnucitizen.org/projects/javascript-address-info/" rel="nofollow">http://www.gnucitizen.org/projects/javascript-address-info/</a></p> <p>You could then map IP to the port on the NAT and have a unique mapping. He actually describes a very similar problem to yours.</p> http://stackoverflow.com/questions/1505127/what-do-you-call-escape-characters-in-rails-jsp-etc/1505202#1505202 0 Answer by AlexDuggleby for What do you call <% %> escape characters in Rails/JSP/etc? AlexDuggleby 2009-10-01T17:00:04Z 2009-10-01T17:00:04Z <p>I recall Jeff Atwood calling them "bee stings" in a past Stackoverflow Podcast, but I'm not sure if that only applies to the .NET versions</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1503962/server-generated-printing-printing-to-printer-closest-to-user/1504578#1504578 0 Answer by AlexDuggleby for Server generated printing printing to printer closest to user AlexDuggleby 2009-10-01T15:18:05Z 2009-10-01T15:18:05Z <p>Maybe I'm misunderstanding this, but from what I read as soon as you identify the workstation you can build a static map of the printers nearby? If so, why not use the IP of the workstation as an identifier. It should be straight-forward to read it from the HTTP request.</p> <p>As for a bit of a more exotic solution. If your network setup is fairly formal in that those printers nearby will probably share a common router/switch, you could trace route from the SAAS server to the workstation (1) and then to each printer (2). Then matching up (1) and (2) and finding those that have the closest switch to the end IP should give you the closest printer. </p> <p>So let's say workstation A and printer A are closest they are connected to switch B which over a few hops is connected to switch C and that's also where your servers are connected.</p> <p>(1) should look something like this:</p> <pre><code>Hop 1: Server IP Hop ..... Hop 2: Switch M Hop ..... Hop n-1: Switch A Hop m: Workstation A </code></pre> <p>One of the routers from (2) should share the last two hops</p> <pre><code>Hop n: Switch A Hop m: Workstation A </code></pre> <p>Therefore take a printer where m-n is the smallest number.</p> <p>I would certainly go for the static IP to printer solution because it is simple, but in case that is not an option, then maybe the latter is. But this is only if the network setup is large and formal enough.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1497179/nhibernate-lazy-loading-property-what-does-build-time-bytecode-instrumentation/1497249#1497249 0 Answer by AlexDuggleby for NHibernate lazy loading property - what does build-time bytecode instrumentation mean ? AlexDuggleby 2009-09-30T10:25:37Z 2009-09-30T10:25:37Z <p>For lazy loading to work NHibernate makes use of interception (via dynamic objects). That means it wraps your call to Picture and when you first call Picture it it will load the property from the database. </p> <p>For this to work it can use one of three types of Dynamic object frameworks:</p> <ul> <li>Castle DynamicProxy</li> <li>Linfu</li> <li>Spring</li> </ul> <p>When you download NHibernate there is another folder with three types of these dynamic object plugins and you need to copy three dlls to the nhibernate folder (where nhibernate.dll is) and set a property in your nhibernate configuration file.</p> <pre><code>&lt;property name="proxyfactory.factory_class"&gt;NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu&lt;/property&gt; </code></pre> <p>Ref: <a href="http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx" rel="nofollow">http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx</a></p> <p>HTH Alex</p> http://stackoverflow.com/questions/1483092/strange-route-problem-in-asp-net-mvc-default-route-not-hit/1483417#1483417 1 Answer by AlexDuggleby for Strange route problem in ASP.NET MVC - default route not hit AlexDuggleby 2009-09-27T11:45:09Z 2009-09-27T11:45:09Z <p>Am I right in thinking you are trying to hit </p> <pre><code>http://server/{controller}/{action}/{id} </code></pre> <p>with </p> <pre><code>http://server/ </code></pre> <p>If you are I think you need to provide a default for the last parameter {id}. You have a default for a parameter slug but without a default for {id} I don't think ASP.NET Routing can hit it.</p> <p>If I'm right </p> <pre><code>http://server/Pages/Display </code></pre> <p>should also not hit the default route, because you are expecting id in Display?</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1481022/what-is-currently-the-best-html-css-javascript-configuration/1481029#1481029 5 Answer by AlexDuggleby for What is currently the best HTML/CSS/Javascript configuration? AlexDuggleby 2009-09-26T11:32:56Z 2009-09-26T12:45:19Z <p>Personally I would bind to the click event via jQuery to ensure nice separation, like this:</p> <pre><code>$("#yourId").bind("click", highlightIt); </code></pre> <p>This way you can bind to multiple event handlers. If you just use onclick AFAIK you can only ever use one handler. </p> <p>BTW you can also use custom event and event namespaces:</p> <pre><code>$("#yourId").bind("beforeHighlighting", doSomething); </code></pre> <p>is triggered by</p> <pre><code>$("#yourId").trigger("beforeHighlighting"); </code></pre> <p>and </p> <pre><code>$(".hasAHelptext").bind("helptext.click", showHelptextFct); $(".hasAHelptext").bind("click", otherFct); // will only remove the showHelptextFct event handler $(".hasAHelptext").unbind("helptext.click"); </code></pre> <p>HTH Alex</p> http://stackoverflow.com/questions/1481065/jquery-show-hide-items-individually-with-same-class-name/1481078#1481078 0 Answer by AlexDuggleby for jQuery - Show/Hide items individually with same class name AlexDuggleby 2009-09-26T11:59:40Z 2009-09-26T12:06:03Z <p>Try adding another id of the links div to the span you want to open:</p> <p>change div1 to div1</p> <p>Then add the jQuery magic:</p> <pre><code>$(function(){ // First hide all hide links initially. $(".hide").hide(); // then attach hide handler $(".hide").bind("click", function(){ $(this).siblings(".show").show(); $(this).hide(); $(".myDiv." + $(this).attr("id")).show(); }); // and the show handler $(".show").bind("click", function(){ $(this).siblings(".hide").show(); $(this).hide(); $(".myDiv." + $(this).attr("id")).hide(); }); }); </code></pre> <p>HTH Alex</p> http://stackoverflow.com/questions/1481052/how-to-get-personalized-sub-domains-for-users-and-make-them-work/1481072#1481072 1 Answer by AlexDuggleby for How to get personalized sub-domains for users and make them work? AlexDuggleby 2009-09-26T11:56:07Z 2009-09-26T11:56:07Z <p>Basically you need two parts:</p> <p>1) Your Nameserver needs to support wildcards. So you would map *.mydomain.com to a single server. This will cause alice.mydomain.com and bob.mydomain.com to all go to the same server.</p> <p>2) Then your server software should be able to map the hostname (=alice.mydomain.com) to your application and pass in the "alice" part as a parameter.</p> <p>Depending in what framework/server software you use this should be quite easy.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1481017/net-logger-write-your-own-vs-log4net-enterprise-logger-nlog-etc/1481044#1481044 4 Answer by AlexDuggleby for .Net Logger (Write your own vs log4net/enterprise logger/nlog etc.) AlexDuggleby 2009-09-26T11:41:16Z 2009-09-26T11:41:16Z <p>I would take a different approach. How about first introducing a common interface to your own library such as Common Infrastructure Libraries (<a href="http://netcommon.sourceforge.net/" rel="nofollow">http://netcommon.sourceforge.net/</a>). Then you can gradually move all projects over to that interface and if your own library is not up to the job for large projects then simply switch over to one of the open source frameworks (or even a commercial solution).</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1481022/what-is-currently-the-best-html-css-javascript-configuration/1481038#1481038 3 Answer by AlexDuggleby for What is currently the best HTML/CSS/Javascript configuration? AlexDuggleby 2009-09-26T11:36:11Z 2009-09-26T11:36:11Z <p>With regard to CSS and JS files in general, I wouldn't combine all JS files to a single file during development. It gets very hard to develop in one big JS file. Rather use a module that combines them on-the-fly or during deployment.</p> <p>I usually go with (both CSS and JS):</p> <p>one general file:</p> <ul> <li>project.css</li> </ul> <p>and one per page:</p> <ul> <li>project_welcome.css</li> </ul> <p>and any special components (login controls, ad area views etc) have a seperate one as well. </p> <p>That way you can apply some organizing techniques and won't go crazy managing that single large file.</p> <p>HTH Alex</p> http://stackoverflow.com/questions/1471631/blur-a-select-after-change-in-internet-explorer-6 0 Blur a select after change in Internet Explorer 6 AlexDuggleby 2009-09-24T13:15:50Z 2009-09-24T14:29:02Z <p>Simple question really. This works in all but IE6:</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;/body&gt; &lt;select id="test" onchange="blur()"&gt; &lt;option name="one"&gt;One&lt;/option&gt; &lt;option name="two"&gt;Two&lt;/option&gt; &lt;option name="three"&gt;Three&lt;/option&gt; &lt;/select&gt; &lt;/html&gt; </code></pre> <p>Is there anyway to get this working in IE6? JavaScript and JQuery hacks allowed. </p> <p>Any ideas, remarks or tips? Thanks in advance</p> http://stackoverflow.com/questions/577494/why-does-a-form-region-in-outlook-2007-plugin-keep-a-reference-to-the-underlying 0 Why does a Form Region in Outlook 2007 Plugin keep a reference to the underlying object open? AlexDuggleby 2009-02-23T12:32:12Z 2009-08-06T15:08:07Z <p>I've created an empty Outlook 2007 Plugin Project in Visual Studio 2008 (SP1). Then I added a new Form Region (Contact type, Adjoined, otherwise defaults) and then I run the project. </p> <p>Outlook opens, I go to a contact change a couple of things, then click on the close button. Outlook asks if I want to save, I choose No. </p> <p>My understanding is that this should reset all changes I made. But if I re-open that same contact all my changes are still there. If I close the whole outlook it will re-prompt me to save the contact I changed. </p> <p>This leads me to thinking that the default Form Region template actually keeps a reference to the Contact it is being shown for and not disposing of it after the form region is closed. This causes the contact to be in memory and not simply disposed after closing the form.</p> <p>Can anyone reproduce, or is it a feature? Any way to get around this?</p> http://stackoverflow.com/questions/59075/how-do-i-save-each-sheet-in-an-excel-workbook-to-separate-csv-files-with-a-macro 4 How do I save each sheet in an Excel workbook to separate CSV files with a macro? AlexDuggleby 2008-09-12T14:04:02Z 2009-07-21T18:31:25Z <p>Title says it all.</p> <p>I have an excel with multiple sheets. And I was looking for a macro that will save each sheet to a separate CSV (comma separated file). Excel will not allow you to save all sheets to different CSV files.</p> http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/874501#874501 3 Answer by AlexDuggleby for What would make development with SharePoint easier? AlexDuggleby 2009-05-17T12:21:56Z 2009-05-17T12:21:56Z <p>Remote Deployment: - 1 central Sharepoint, and transparent remote debugging.</p> http://stackoverflow.com/questions/737088/visual-studio-2008-installation/737103#737103 2 Answer by AlexDuggleby for visual studio 2008 installation AlexDuggleby 2009-04-10T08:59:21Z 2009-04-10T08:59:21Z <p>Hi,</p> <p>not quite sure if you are actually missing the project templates or if the project templates themselves are failing, but if it's the former, then try </p> <p>Open cmd.exe, goto \Common7\IDE. Run "devenv /installvstemplates" </p> <p>Also see here: <a href="http://msdn.microsoft.com/en-us/library/ms247116%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms247116(VS.80).aspx</a></p> <p>HTH Alex</p> http://stackoverflow.com/questions/1588039/sql-command-isnull-for-odbc-connection/1588212#1588212 Comment by AlexDuggleby on SQL Command ISNULL for ODBC Connection AlexDuggleby 2009-10-19T12:41:18Z 2009-10-19T12:41:18Z Could you explain further? Do you mean I should be running the select on a table. I am actually just doing SELECT ISNULL(CountMe,0) + ISNULL(CountMe2,0) FROM Table Thanks http://stackoverflow.com/questions/1559591/troubleshooting-plk-verification-for-visual-studio-package-in-a-vsip-development/1570290#1570290 Comment by AlexDuggleby on Troubleshooting Plk Verification for Visual Studio Package in a VSIP Development Edition AlexDuggleby 2009-10-15T13:37:20Z 2009-10-15T13:37:20Z This is actually what I ended up doing, but it's really still bugging me that we ran into this problem and I wonder if anyone can come up with some more hints... thanks http://stackoverflow.com/questions/1516560/running-sql-server-2008-on-windows-7-and-setup-its-sp-problems Comment by AlexDuggleby on running sql server 2008 on windows 7 and setup its sp problems AlexDuggleby 2009-10-04T15:47:31Z 2009-10-04T15:47:31Z Maybe User Access Control is causing a problem? http://stackoverflow.com/questions/1513668/how-to-encrypt-passwords-in-c Comment by AlexDuggleby on how to encrypt passwords in c# ? AlexDuggleby 2009-10-03T12:56:07Z 2009-10-03T12:56:07Z explain more. do you really need to encrypt or just hashing would do the job? give us some context. http://stackoverflow.com/questions/1513445/authenticated-onto-two-seperate-sites-with-one-login-and-using-an-iframe-possi/1513476#1513476 Comment by AlexDuggleby on Authenticated onto two seperate sites with one login (and using an IFrame). Possible? AlexDuggleby 2009-10-03T11:51:49Z 2009-10-03T11:51:49Z added an example for reference http://stackoverflow.com/questions/1513477/mass-mailing-html-newsletter-in-asp-net/1513497#1513497 Comment by AlexDuggleby on Mass mailing HTML-newsletter in Asp.Net AlexDuggleby 2009-10-03T11:32:54Z 2009-10-03T11:32:54Z 2. Not always. Usually the smtp server you are sending to will only issue a &quot;recipient not found&quot; if it a single server system that knows about all it's recipients. Take a larger system and the incoming server doesn't know about the account. 3. Just put the try catch inside the loop and log the error. for then try then send mail send catch (log) then end for. 5. Ok then server side images are probably the only solution, but a lot of providers won't show them initially unless the user has decided to trust your newsletter sending email address. http://stackoverflow.com/questions/1509044/showing-a-spinner-during-an-ajax-request/1509062#1509062 Comment by AlexDuggleby on Showing a spinner during an AJAX request? AlexDuggleby 2009-10-02T11:58:09Z 2009-10-02T11:58:09Z Ok not quite as easy, but check this page <a href="http://www.prototypejs.org/api/ajax/request" rel="nofollow">prototypejs.org/api/ajax/request</a> and the events: - onCreate - onComplete http://stackoverflow.com/questions/1509044/showing-a-spinner-during-an-ajax-request Comment by AlexDuggleby on Showing a spinner during an AJAX request? AlexDuggleby 2009-10-02T11:50:33Z 2009-10-02T11:50:33Z may i suggest renaming to &quot;Showing a spinner during an AJAX request?&quot; http://stackoverflow.com/questions/1508970/asp-net-email-format-inside-global-resource-file/1508989#1508989 Comment by AlexDuggleby on ASP.NET : Email format inside global resource file AlexDuggleby 2009-10-02T11:37:23Z 2009-10-02T11:37:23Z Thanks for that, I hadn't heard of that and was just about preparing to write my own for a new project. You never stop learning... http://stackoverflow.com/questions/1503962/server-generated-printing-printing-to-printer-closest-to-user/1504578#1504578 Comment by AlexDuggleby on Server generated printing printing to printer closest to user AlexDuggleby 2009-10-01T20:36:03Z 2009-10-01T20:36:03Z Oh ok that changes everything. I though you were on your own LAN. Let me try another answer :) http://stackoverflow.com/questions/1481052/how-to-get-personalized-sub-domains-for-users-and-make-them-work/1481072#1481072 Comment by AlexDuggleby on How to get personalized sub-domains for users and make them work? AlexDuggleby 2009-09-27T11:25:42Z 2009-09-27T11:25:42Z that should do the trick http://stackoverflow.com/questions/1481022/what-is-currently-the-best-html-css-javascript-configuration/1481038#1481038 Comment by AlexDuggleby on What is currently the best HTML/CSS/Javascript configuration? AlexDuggleby 2009-09-26T11:45:56Z 2009-09-26T11:45:56Z yes I can confirm that if you use a similar approach as I mentioned yo u can easily end up with the browser trying to load 50+ JS + CSS files which on the first hit will cause it to take a long time. And after each update the same happens etc... Of course the cache will kick-in after that, but that doesn't matter if your visitor doesn't come back after the first loading time took too long. And things like minifying the JS is easier once you've processed it into one single JS file. http://stackoverflow.com/questions/1471631/blur-a-select-after-change-in-internet-explorer-6/1471653#1471653 Comment by AlexDuggleby on Blur a select after change in Internet Explorer 6 AlexDuggleby 2009-09-25T11:57:13Z 2009-09-25T11:57:13Z hi this is closest to what we ended up using, which was body.blur() or document.body.blur(). Thanks! http://stackoverflow.com/questions/1471631/blur-a-select-after-change-in-internet-explorer-6 Comment by AlexDuggleby on Blur a select after change in Internet Explorer 6 AlexDuggleby 2009-09-25T11:55:48Z 2009-09-25T11:55:48Z the blur() isn't working. Sorry should have specified more clearly. http://stackoverflow.com/questions/114007/free-supportticket-software/123162#123162 Comment by AlexDuggleby on Free supportticket software AlexDuggleby 2009-02-16T15:13:37Z 2009-02-16T15:13:37Z fyi: the link to Kayako eSupport points to request tracker instead