User Dan F - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:22:58Z http://stackoverflow.com/feeds/user/11569 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814977/modify-applicationsettings/1815186#1815186 1 Answer by Dan F for Modify ApplicationSettings Dan F 2009-11-29T10:27:44Z 2009-11-29T10:27:44Z <p>If you still want to keep using settings, you could try writing your own custom settings provider. <a href="http://www.sellsbrothers.com/writing/default.aspx?content=dotnet2customsettingsprovider.htm" rel="nofollow">Chris Sells</a> has a decent looking example, there's a good looking <a href="http://www.codeproject.com/KB/vb/CustomSettingsProvider.aspx" rel="nofollow">Codeproject article</a> and a search for <a href="http://stackoverflow.com/search?q=SettingsProvider">SettingsProvider</a> here gives good looking results.</p> http://stackoverflow.com/questions/1726183/jquery-passing-a-function-call-through-to-another-function-and-order-of-execution/1726230#1726230 0 Answer by Dan F for jQuery passing a function call through to another function and order of execution Dan F 2009-11-12T23:49:38Z 2009-11-12T23:49:38Z <p><a href="http://stackoverflow.com/questions/1726183/jquery-passing-a-function-call-through-to-another-function-and-order-of-execution/1726205#1726205">eduffy's</a> answer is the simplest possible thing that could work, and will work a treat. If you want something more hardcore, a quiet read of <a href="http://ejohn.org/blog/partial-functions-in-javascript/" rel="nofollow">partial application</a> might give you another technique to add to your toolbelt.</p> http://stackoverflow.com/questions/439762/good-code-to-read/1480109#1480109 2 Answer by Dan F for Good code to read? Dan F 2009-09-26T00:47:12Z 2009-09-26T00:56:31Z <p>Scott Hanselman does <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">a weekly source code post</a> where he picks something interesting he thinks developers should poke through.</p> <blockquote> <p>I really advocate folks reading as much source as they can because you become a better writer by reading as much as writing. That's the whole point of the <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">Weekly Source Code</a> - reading code to be a better developer.</p> </blockquote> <p>He comes at it from a .NET slant, but most of the code he picks is indeed pretty awesome.</p> http://stackoverflow.com/questions/1471398/javascript-image-popup-window/1471424#1471424 0 Answer by Dan F for JavaScript Image Popup Window Dan F 2009-09-24T12:37:35Z 2009-09-24T12:37:35Z <p>I believe the technique you're after is a <a href="http://www.huddletogether.com/projects/lightbox2/" rel="nofollow">lightbox</a> (I think it was the first of these).</p> <p><a href="http://jquery.com/demo/thickbox/" rel="nofollow">Thickbox</a> is an awesome jQuery based clone, or there's about a <a href="http://www.google.com.au/search?rlz=1C1CHMG%5Fen-USAU291AU304&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=lightbox+clone" rel="nofollow">million others out there</a> :-)</p> http://stackoverflow.com/questions/1454352/whats-the-best-way-of-hashing-this-complex-structure-in-vb6/1459890#1459890 3 Answer by Dan F for What's the best way of hashing this complex structure in VB6? Dan F 2009-09-22T12:49:39Z 2009-09-24T09:32:59Z <p>Can you use the CRC32? Steve McMahon has <a href="http://www.vbaccelerator.com/home/vb/Code/Libraries/CRC32/article.asp" rel="nofollow">an implementation</a>. Combine that with a bit of <a href="http://en.wikipedia.org/wiki/Base32" rel="nofollow">base32</a> encoding and you've got something short enough to read over the phone.</p> http://stackoverflow.com/questions/1464788/expose-version-of-mef-loaded-plugin 1 Expose version of MEF loaded "plugin" Dan F 2009-09-23T08:49:28Z 2009-09-23T09:02:49Z <p>Hi all</p> <p><em>apologies for the title, I got stuck for words</em></p> <p>I'm dipping my toes in the MEF pond. So far, so good. I've got a host app and a couple of "plugin" assemblies that export things. The host app defines an attribute called <code>DescriptionAttribute</code> which inherits from <code>ExportAttribute</code> and has a simple <code>Name</code> property. My test form has an <code>&lt;ImportMany&gt;</code> <code>IEnumerable(Of Lazy(Of IDoStuff, IDescriptionAttribute))</code>. This gets nicely filled by MEF, I can spin through the collection, the <code>Name</code> property is filled in, life is golden. <em>I'll split things out into separate assemblies later on, at the moment it's just a proof of concept</em>.</p> <p>Now, the question is: Is there any way I can expose the assembly version of the <code>IDoStuff</code> implementing, <code>DescriptionAttribute</code> wearing "plugin" classes through the <code>DescriptionAttribute</code> attribute that I have? All my attempts so far at passing it to the constructor of the attribute have failed, studio keeps telling me that a constant expression is required (understandably). I can expose it through the IDoStuff interface, but it'd be much nicer to have it as part of the <code>DescriptionAttribute</code> attribute instead, that "feels" better. I can also hardcode it, but it's another spot that I'd forget to update when releasing a new version of a "plugin" :-)</p> http://stackoverflow.com/questions/1459676/prevent-scroll-bubbling-from-element-to-window/1460006#1460006 -1 Answer by Dan F for prevent Scroll "bubbling" from element to window Dan F 2009-09-22T13:08:26Z 2009-09-22T13:08:26Z <p>Apparently, you can set <a href="http://groups.google.com/group/jquery-en/browse%5Fthread/thread/d9d43f8bef89284b" rel="nofollow"><code>overflow:hidden</code> to prevent scrolling</a>. Not sure how that'd go if the doc is already scrolled. I'm also on a mouseless laptop, so no scrolly wheel testing for me tonight :-) It's probably worth a shot though.</p> http://stackoverflow.com/questions/1459124/how-to-prevent-click-queue-build-up-using-toggle-in-jquery-tried-using-bind-unb/1459855#1459855 0 Answer by Dan F for how to prevent click queue build up, using toggle in jquery? tried using bind/unbind('click') Dan F 2009-09-22T12:42:04Z 2009-09-22T12:42:04Z <p>Rather than ignoring the subsequent clicks, you might get some benefit from the <a href="http://docs.jquery.com/Effects/stop#clearQueuegotoEnd" rel="nofollow"><code>stop()</code></a> method. See <a href="http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup" rel="nofollow">Quick Tip: Prevent Animation Queue Buildup</a> for an example. He's talking about <code>hover</code>, but it holds for anywhere that you're likely to run animations one after the other on the same event.</p> <p>Alternatively, can you <a href="http://jquery-howto.blogspot.com/2008/12/how-to-disableenable-element-with.html" rel="nofollow">disable</a> the button, rather than drop the whole click handler? It probably expresses the intent of "don't click me again" better than dropping the clicks.</p> http://stackoverflow.com/questions/1457690/jquery-ajax-success-anonymous-function-scope/1457710#1457710 1 Answer by Dan F for jQuery ajax success anonymous function scope Dan F 2009-09-22T01:30:27Z 2009-09-22T01:30:27Z <p>Short answer, you can't, the a in ajax stands for Asynchronous, which means the request is still going when you get to the return statement.</p> <p>You <strong>can</strong> do it with an async request, but it's generally a <strong>Bad Thing</strong></p> <p>Something like the following oughta return the data.</p> <pre><code>function getPrice(productId, storeId) { var returnHtml = ''; jQuery.ajax({ url: "/includes/unit.jsp?" + params, async: false, cache: false, dataType: "html", success: function(html){ returnHtml = html; } }); return returnHtml; } </code></pre> <p><hr /></p> <p><strong>BUT</strong></p> <p>Unless you really really need to be able to use the return value from test straight away, you'll be <strong>much</strong> better off passing a callback into test. Something like</p> <pre><code>function getPrice(productId, storeId, callback) { jQuery.ajax({ url: "/includes/unit.jsp?" + params, async: false, cache: false, dataType: "html", success: function(html){ callback(html); } }); } //the you call it like getPrice(x,y, function(html) { // do something with the html } </code></pre> <p><strong>Edit</strong> Sheesh, you guys are quicker to say what I said :-)</p> http://stackoverflow.com/questions/1456844/how-do-i-bind-my-jquery-function-to-a-asp-net-button-and-still-allow-validation-a/1457666#1457666 1 Answer by Dan F for How do I bind my Jquery function to a asp.net button and still allow Validation and PostBack? Dan F 2009-09-22T01:06:34Z 2009-09-22T01:21:54Z <p>I get the feeling you can use <a href="http://msdn.microsoft.com/en-us/library/ms153112.aspx" rel="nofollow">GetPostBackEventReference</a> to do the actual postback once you've done your validation dance.</p> <p><strong>Edit</strong> Oops, forgot the other half of the answer :-)</p> <p>As for the double postback, I've used <a href="http://encosia.com/downloads/postback-ritalin/" rel="nofollow">Postback Ritalin</a> by <a href="http://stackoverflow.com/users/60/dave-ward">Dave Ward</a> in the past to curtail those pesky hyperactive users.</p> http://stackoverflow.com/questions/1450848/jquery-based-min-max-width-fix-for-ie6/1450881#1450881 0 Answer by Dan F for jQuery based min/max width fix for IE6 Dan F 2009-09-20T12:01:36Z 2009-09-20T12:01:36Z <p><a href="http://www.jamesmarquez.com/css-compliant-min-width-and-max-width-for-ie6.html" rel="nofollow">This</a> one looks decent. I haven't tried it, but it looks to handle browser resizing. Needs adapting though, I highly doubt it's copypasta ready (there's hardcoded stuff in there).</p> http://stackoverflow.com/questions/1442800/insert-only-when-that-records-doesnt-exists-in-table/1442812#1442812 1 Answer by Dan F for Insert only when that records doesn't exists in table Dan F 2009-09-18T06:04:36Z 2009-09-18T06:10:47Z <p>Easiest way is the not exists statement, something like the following should work for you</p> <p><strong>note</strong> Unless I'm misunderstanding your schema, I think you're missing some quotes around the Name and Type columns, I've included them below</p> <pre><code>if not exists ( SELECT NULL as test FROM dbo.tblStatus WHERE [Type] = 'UsageLevel' AND [Name] = 'High' ) BEGIN INSERT INTO [UserPoint].[dbo].[tblStatus]([Type],[Name],[DisplayOrder]) VALUES ('UsageLevel','High',1) END if not exists ( SELECT NULL as test FROM dbo.tblStatus WHERE [Type] = 'UsageLevel' AND [Name] = 'Medium' ) BEGIN INSERT INTO [UserPoint].[dbo].[tblStatus]([Type],[Name],[DisplayOrder]) VALUES ('UsageLevel','Medium',2) END if not exists ( SELECT NULL as test FROM dbo.tblStatus WHERE [Type] = 'UsageLevel' AND [Name] = 'Low' ) BEGIN INSERT INTO [UserPoint].[dbo].[tblStatus]([Type],[Name],[DisplayOrder]) VALUES ('UsageLevel','Low',3) END </code></pre> http://stackoverflow.com/questions/1436456/can-a-single-linq-query-expression-be-framed-in-this-scenario/1436538#1436538 0 Answer by Dan F for Can a single LINQ Query Expression be framed in this scenario? Dan F 2009-09-17T03:09:29Z 2009-09-17T03:09:29Z <p>I <em>think</em> the <a href="http://www.hookedonlinq.com/GroupJoinOperator.ashx" rel="nofollow">LINQ GroupJoin operator</a> will help you here. It's similar to the TSQL <code>LEFT OUTER JOIN</code></p> http://stackoverflow.com/questions/1420913/jquery-css-bug-in-ie8/1421009#1421009 1 Answer by Dan F for jQuery CSS bug in IE8 Dan F 2009-09-14T11:32:04Z 2009-09-14T11:32:04Z <p><a href="http://dextrose.be/2008/11/10/jquery-background-position-and-internet-explorer/" rel="nofollow">this</a> should help</p> <p>it links to <a href="http://dev.jquery.com/ticket/2462" rel="nofollow">jquery ticket 2462</a> which is also interesting</p> http://stackoverflow.com/questions/1409918/jquery-get-immediate-next-element-after-the-current-element/1410124#1410124 0 Answer by Dan F for jQuery: get immediate next element after the current element Dan F 2009-09-11T10:14:38Z 2009-09-11T10:14:38Z <p>Are you inside a jquery event handler? If so, why not use <code>$(this).next()</code> and/or <code>$(this).prev()</code> ?</p> http://stackoverflow.com/questions/1408382/how-to-call-jquery-from-outside-of-jquery-block/1408392#1408392 0 Answer by Dan F for How to call JQuery from outside of JQuery block Dan F 2009-09-11T00:15:14Z 2009-09-11T00:15:14Z <p>Would it be as simple as ripping the <code>.each</code> out into its own function and calling it both from the ready and the <code>cmdSave_PostCallBack</code>?</p> <p>Something like: </p> <pre><code>jQuery(document).ready(function() { //select all anchors in divMain element and attach click handler $("#&lt;%=divSelectorLinks.ClientID %&gt; a").click(function(e) { e.preventDefault(); var content = $(this.getAttribute("rel")); //attach nyromodal $.nyroModalManual({ bgColor: '#efefef', width: 200, content: content }) }); displayCurrentlySelectedValues(); return false; }); function cmdSave_PostCallBack() { displayCurrentlySelectedValues(); } function displayCurrentlySelectedValues() { //Note how this uses the same selector as in .ready $("#&lt;%=divSelectorLinks.ClientID %&gt; a") .each(function(i) { var selectionText = $(this.getAttribute("rel")).find(':selected')[0].innerHTML; if (selectionText.substr(0, 4) == "All ") { this.innerHTML += ": All"; } else { this.innerHTML = this.innerHTML + ": " + selectionText; } }); return false; } </code></pre> http://stackoverflow.com/questions/1405068/simple-database-starter-kit-for-asp-net-web-crud-application/1405239#1405239 2 Answer by Dan F for Simple database "starter kit" for ASP.NET web CRUD application Dan F 2009-09-10T13:14:38Z 2009-09-10T13:14:38Z <p>Have you considered <a href="http://www.asp.net/dynamicdata/" rel="nofollow">Asp.net Dynamic Data</a>? It starts out pretty bare bones, but you can do deep. You go from database to fully working (but fairly utilitarian) site in about 60 seconds. Then you can start cusomising it till your heart's content.</p> <p>Scott Gu has <a href="http://weblogs.asp.net/scottgu/archive/2007/12/14/new-asp-net-dynamic-data-support.aspx" rel="nofollow">a good intro</a>. It's a bit old now, but as far as I know the content is still relevant.</p> http://stackoverflow.com/questions/1277193/jquery-how-to-debug/1277387#1277387 0 Answer by Dan F for jQuery : how to debug? Dan F 2009-08-14T11:32:07Z 2009-08-14T11:32:07Z <p>I don't think it's TextMate or Firebug that Dmitri is using in his video. I think it's something custom the little dude has written. It's definitely running <em>inside</em> firebug though, you can see the titlebar it at the 4 minute mark. I can vaguely make out "somethingorother console 0.2" but I can't for the life of me google up anything about it. He's used a similar tool in <a href="http://www.archive.org/details/DrupalconDc2009-Jquery?start=239.5" rel="nofollow">past talks</a> too</p> <p>But, yeah, as a general rule the Firebug console will let you do this just as well, it's an awesome tool.</p> http://stackoverflow.com/questions/1236608/is-there-a-built-in-name-value-pair-attribute 2 Is there a built in name/value pair attribute? Dan F 2009-08-06T01:59:34Z 2009-08-06T02:08:50Z <p>Hi all</p> <p>Is there a built in attribute in the .net framework to mark up code with an arbitrary key and value? I've had a look through <a href="http://msdn.microsoft.com/en-us/library/system.attribute.aspx" rel="nofollow">the list</a>, but can't see anything useful there. What we ideally want is to be able to say</p> <pre><code>[NameValuePair("MyKey", "My long bit of text")] </code></pre> <p>...and then pull it out later on</p> <p>Actually, what we really want to be able to do is embed extra info into the assemblyinfo at continuous integration build time, like</p> <pre><code>[Assembly: NameValuePair("MyKey", "My long bit of text")] </code></pre> <p>and then pull it out later on</p> <p>I've seen Jeff's post about <a href="http://www.codinghorror.com/blog/archives/000142.html" rel="nofollow">Custom AssemblyInfo Attributes</a>, and it is good, but if there's an implicit attribute baked into the framework it'll be even better.</p> http://stackoverflow.com/questions/1146579/why-would-i-use-recursion-over-a-loop/1146603#1146603 1 Answer by Dan F for why would I use recursion over a loop? Dan F 2009-07-18T03:12:19Z 2009-07-18T03:12:19Z <blockquote> <p>despite it being really elegant</p> </blockquote> <p>That's the crux of the matter right there. Recursion <em>can</em> be really elegant. It can help you express the intent of your code better. Which is what we're all doing right? Trying to make sure the <strong>what</strong> comes through amongst the nitty gritty of the <strong>how</strong>. And making sure those <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">violent psychopaths</a> have no reason to pay us a home visit :-)</p> http://stackoverflow.com/questions/1080459/calling-javascript-from-sifr-replaced-anchor-tags/1081709#1081709 2 Answer by Dan F for Calling javascript from sifr replaced anchor tags? Dan F 2009-07-04T07:06:04Z 2009-07-04T08:00:00Z <p>According to <a href="http://stackoverflow.com/questions/626595/sifr-jquery-toggle-not-working-in-ff3">626595</a> and <a href="http://stackoverflow.com/questions/801642/onclick-event-on-sifr-embed-tag-in-ie">801642</a>, the click event doesn't get propagated out. If you're using sIFR 3, there's an <a href="http://wiki.novemberborn.net/sifr3/JavaScript%2BMethods" rel="nofollow">onRelease</a> callback you can pass into <code>sIFR.replace()</code>, which gets given a <a href="http://wiki.novemberborn.net/sifr3/FlashInteractor" rel="nofollow">FlashInteractor</a> object. From there you can use <code>getAncestor()</code> to get access to the replaced element.</p> <p>So, your code will probably look something like the following. <em>(this is untested by me)</em></p> <pre><code>sIFR.replace(futura, { /* the rest of your replace params */ selector: '#navigation ul li', transparent:true, onRelease: function(fi) { liClick( fi.getAncestor() ); } }); function liClick(li) { var $li = $(li), $a = $(li).find('a'); //$li points at a jQuery'd list item //$a points at the original anchor } </code></pre> <p>Mark Wubben's <a href="http://discuss.joyent.com/viewtopic.php?pid=195419#p195419" rel="nofollow">answer</a> in <a href="http://discuss.joyent.com/viewtopic.php?id=22375" rel="nofollow">this</a> forum post was very enlightening for <code>getAncestor</code> and <code>onRelease</code></p> http://stackoverflow.com/questions/1080122/jquery-ie6-click-problem/1081744#1081744 1 Answer by Dan F for jQuery IE6 click problem Dan F 2009-07-04T07:39:59Z 2009-07-04T07:39:59Z <p>Just a small thing, <a href="http://www.my-debugbar.com/forum/t109-Cant-access-cookes.html" rel="nofollow">IETester cannot read cookies</a>. This might be affecting things. Although, you said you tested in a native IE6, so it's probably not the issue, but it's worth knowing about.</p> http://stackoverflow.com/questions/1080052/should-i-verify-an-email-address-when-a-user-registers-on-my-website/1080137#1080137 1 Answer by Dan F for Should I verify an email address when a user registers on my website? Dan F 2009-07-03T16:54:02Z 2009-07-03T16:54:02Z <p>It's certainly nice to know that the email address entered is valid. But, is it important for the core function of the site? Are you likely to <strong>need</strong> to contact the user again? If the email is only an ancillary attribute of the user, it's OK to have it "fudgeable". Another thing to consider - how often are people going to be visiting your site? If it's infrequently, and they've fudged the email address, offering a "forgot password" option becomes difficult :-)</p> <p>If you don't force verification, I'd suggest doing something like CodeProject. If you haven't verified your email address in <em>a while</em>, they put a nice yellow banner informing you that your email address might be out of date. It's unobtrusive and effective. I'd also suggest sending a "Welcome to widgets inc" email with an invitation to click on the link and verify the email addy. That way anybody who signs up as billyg@microsoft will be out of luck :-)</p> <p>I was going to include a link to an awesome .net rocks show about email verification and bringing servers to their knees and spam and lots of good goodness, but I can't find it! I think it was Ayende or Oren or one of those smart guys. Anybody remember the episode?</p> http://stackoverflow.com/questions/1079237/jquery-equivalent-of-yui-stylesheet-utility/1079845#1079845 2 Answer by Dan F for jQuery equivalent of YUI StyleSheet Utility? Dan F 2009-07-03T15:24:00Z 2009-07-03T15:24:00Z <p>Found a couple that look like they do similar things. I haven't tested them. jQuery.Rule looks to be pretty good though</p> <p><a href="http://flesler.blogspot.com/2007/11/jqueryrule.html" rel="nofollow"><strong>jQuery.Rule</strong></a> by Ariel Flesler</p> <blockquote> <p>This plugin allows quick creation/manipulation of CSS Rules, in a "jQuery-way". It includes features like chaining, iteration using each, selectors with context.</p> </blockquote> <p><a href="http://www.burnbright.co.nz/globalstylesheet-jquery-plugin/" rel="nofollow"><strong>GlobalStylesheet</strong></a> by Jeremy Lea</p> <blockquote> <p>Enables CSS modification that uses a 'global' stylesheet, rather than inline CSS. This is particularly handy for modifying CSS styles that you want to remain persistent until a page is refreshed again.</p> </blockquote> http://stackoverflow.com/questions/1063947/webforms-dynamic-or-absolute-script-tags-in-masterpages/1064042#1064042 0 Answer by Dan F for WebForms: Dynamic (or absolute) script tags in MasterPages Dan F 2009-06-30T14:38:25Z 2009-06-30T14:38:25Z <blockquote> <p>The Controls collection cannot be modified because the control contains code blocks</p> </blockquote> <p>That error sounds familiar. <a href="http://www.aspnetresources.com/blog/code%5Fblocks%5Finside%5Fmaster%5Fpages%5Fcause%5Ftrouble.aspx" rel="nofollow">This</a> page helped when I fumbled my way through this one </p> http://stackoverflow.com/questions/1063780/free-multiple-selection-calendar/1063907#1063907 0 Answer by Dan F for Free multiple selection calendar Dan F 2009-06-30T14:10:51Z 2009-06-30T14:10:51Z <p>I've had luck with Kelvin Luck's <a href="http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/" rel="nofollow">jQuery date picker</a> in the past. It's not super sexy, but it works well.</p> http://stackoverflow.com/questions/1062731/jquery-toggle-to-change-image/1063077#1063077 1 Answer by Dan F for jQuery toggle to change image Dan F 2009-06-30T11:01:31Z 2009-06-30T11:01:31Z <p>CSS Sprites would indeed be <strong>the</strong> way to do this, but just for completeness, here's another option.</p> <p>Normally I'm the last to reach for a regexp, but I think they'll help here</p> <pre><code>$('.wizard-img').click(function() { var $img = $(this).find('img') , src = $img.attr('src') , onCheck = /\-on\.jpg$/ , offCheck = /\-off\.jpg$/ , normal = /\.jpg$/ ; if(src.match(onCheck)) { $img.attr('src', src.replace(onCheck, '-off.jpg')); } else if (src.match(offCheck)) { $img.attr('src', src.replace(offCheck, '.jpg')); } else { $img.attr('src', src.replace(normal, '-on.jpg')); } }); </code></pre> http://stackoverflow.com/questions/1058020/does-datetime-tostrings-return-always-same-format/1058044#1058044 6 Answer by Dan F for Does DateTime.ToString("s") return always same format? Dan F 2009-06-29T12:32:50Z 2009-06-29T12:32:50Z <p>Yep. <a href="http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx" rel="nofollow">Breaking that pattern down</a>, it's only numeric properties, there's no reference to anything like month or day <em>names</em> in there.</p> <p><strong>yyyy</strong> - 4 digit date <br/> <strong>MM</strong> - 2 digit month, with leading zero <br/> <strong>dd</strong> - 2 digit day, with leading zero <br/> <strong>T</strong> - a literal T <br/> <strong>HH</strong> - 2 digit hour, with leading zero, 24 hour format <br/> <strong>mm</strong> - 2 digit minute, with leading zero <br/> <strong>ss</strong> - 2 digit second, with leading zero <br/></p> http://stackoverflow.com/questions/1057964/how-to-serialize-linq-to-sql-dataloadwith-loadwith-when-using-it-thru-wcf/1058009#1058009 0 Answer by Dan F for how to serialize Linq-to-SQL DataLoadWith.LoadWith when using it thru WCF? Dan F 2009-06-29T12:21:23Z 2009-06-29T12:21:23Z <p>I believe Damien G's <a href="http://l2st4.codeplex.com/" rel="nofollow">LINQ to sql T4 templates</a> add extra support for serialisation of L2S object graphs - see this post by <a href="http://oakleafblog.blogspot.com/2008/07/bidirectional-serialization-of-linq-to.html" rel="nofollow">Roger Jennings</a> for more details.</p> <p><strong>edit</strong> Forgot to include the link to Damien's post. For more background on Damien G's templates, see his <a href="http://damieng.com/blog/2008/09/14/linq-to-sql-template-for-visual-studio-2008" rel="nofollow">blog post</a>.</p> http://stackoverflow.com/questions/1057819/converting-htmljs-to-exe/1057893#1057893 1 Answer by Dan F for converting html+js to exe Dan F 2009-06-29T11:46:47Z 2009-06-29T11:46:47Z <p>Depends on how complex the page is.</p> <p>If it's a one pager, would a .hta work for you?</p> <p>If it's multiple pages, you could use the IE <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx" rel="nofollow">Webbrowser</a> control (or <a href="http://code.google.com/p/geckofx/" rel="nofollow">geckofx</a> ) and a <a href="http://msdn.microsoft.com/en-us/library/system.net.httplistener.aspx" rel="nofollow">HTTPListener</a></p> <p>Or you could <a href="http://www.microsoft.com/belux/msdn/nl/community/columns/desmet/hostaspnet1.mspx" rel="nofollow">host the asp.net runtime</a> yourself.</p> <p>In the past I've had success with the Webbrowser and injecting the HTML "by hand" (including all required scripts), but I wouldn't recommend it. It was a teeth grinding debugging nightmare. I kept going because it was "fun" :-)</p> http://stackoverflow.com/questions/1814492/jquery-to-target-same-id-as-class-name-of-clicked-element/1814516#1814516 Comment by Dan F on Jquery to target same id as class name of clicked element? Dan F 2009-11-29T03:29:24Z 2009-11-29T03:29:24Z +1, very nice answers http://stackoverflow.com/questions/1724909/formatting-jquery-strings-that-should-span-mulitple-lines/1724938#1724938 Comment by Dan F on formatting jQuery strings that should span mulitple lines. Dan F 2009-11-13T00:02:23Z 2009-11-13T00:02:23Z Yeah, that's valid javascript. I think in the past I've had to put spaces before the slashes to get it to work in all the browsers http://stackoverflow.com/questions/1476550/c-any-standard-way-to-divide-a-class-into-regions/1476582#1476582 Comment by Dan F on C# - Any standard way to divide a class into regions? Dan F 2009-09-26T00:30:07Z 2009-09-26T00:30:07Z @Mitch - nup, no auto properties in VB yet. They're coming in CLR4, or VS2010, or something new and shiny. http://stackoverflow.com/questions/1454352/whats-the-best-way-of-hashing-this-complex-structure-in-vb6/1459890#1459890 Comment by Dan F on What's the best way of hashing this complex structure in VB6? Dan F 2009-09-24T12:07:56Z 2009-09-24T12:07:56Z Ah, whoops, thanks Mark. It all blurs into one some days :-) http://stackoverflow.com/questions/1468890/what-did-vb-replace-the-function-set-with/1468909#1468909 Comment by Dan F on What did VB replace the function "Set" with? Dan F 2009-09-23T22:57:04Z 2009-09-23T22:57:04Z @mjv nice concise explanation there, good job http://stackoverflow.com/questions/1464788/expose-version-of-mef-loaded-plugin/1464842#1464842 Comment by Dan F on Expose version of MEF loaded "plugin" Dan F 2009-09-23T09:31:15Z 2009-09-23T09:31:15Z Ah, the 'ol GetType, I keep forgetting about that one. Yep, that'd be a workable solution. And if I need something other than that, I could hardcoded it as a parameter to the DescriptionAttribute attribute. I tried it, it works, you're a champion Matt! http://stackoverflow.com/questions/1459676/prevent-scroll-bubbling-from-element-to-window/1460006#1460006 Comment by Dan F on prevent Scroll "bubbling" from element to window Dan F 2009-09-22T13:30:40Z 2009-09-22T13:30:40Z Yeah, my thinking is set overflow:hidden on the PARENT window. Not the iframe itself. Therefore, parent window is no longer scrollable, but the contents of the iframe are. http://stackoverflow.com/questions/1453493/javascript-feature-relation-in-asp-net-c-sharp Comment by Dan F on Javascript Feature relation in asp.net C sharp Dan F 2009-09-21T09:02:10Z 2009-09-21T09:02:10Z <a href="http://lmgtfy.com/?q=server-side+javascript" rel="nofollow">lmgtfy.com/?q=server-side+javascript</a> http://stackoverflow.com/questions/1450608/fastest-modular-exponentiation-in-javascript/1450616#1450616 Comment by Dan F on Fastest modular exponentiation in JavaScript Dan F 2009-09-20T12:12:53Z 2009-09-20T12:12:53Z So I suppose poking them into silverlight for the heavy crunching is out of the question too then? http://stackoverflow.com/questions/1438883/jquery-why-use-document-ready-if-external-js-at-bottom-of-page/1438929#1438929 Comment by Dan F on jQuery: Why use document.ready if external JS at bottom of page? Dan F 2009-09-18T15:20:37Z 2009-09-18T15:20:37Z &quot;execute the JS right from the beginning or as it sees it&quot; That's what they do now. As crescent points out, as long as the things you're trying to reference are loaded, you can do without .ready http://stackoverflow.com/questions/1409918/jquery-get-immediate-next-element-after-the-current-element/1410124#1410124 Comment by Dan F on jQuery: get immediate next element after the current element Dan F 2009-09-12T00:02:30Z 2009-09-12T00:02:30Z Fair question. It would depend on the original selector used to hook the event, which was missing from the question. Nice answer btw, +1 from me http://stackoverflow.com/questions/1236608/is-there-a-built-in-name-value-pair-attribute/1236633#1236633 Comment by Dan F on Is there a built in name/value pair attribute? Dan F 2009-08-06T02:23:57Z 2009-08-06T02:23:57Z I like the linked file idea. Not that there's much source to maintain there though :-) http://stackoverflow.com/questions/1236608/is-there-a-built-in-name-value-pair-attribute/1236633#1236633 Comment by Dan F on Is there a built in name/value pair attribute? Dan F 2009-08-06T02:14:44Z 2009-08-06T02:14:44Z Yep, true that. We'd have to make sure the class exists in each &quot;thing&quot; we're building via continuous integration (which could be a world of pain!) but it's a good fallback http://stackoverflow.com/questions/1236608/is-there-a-built-in-name-value-pair-attribute/1236615#1236615 Comment by Dan F on Is there a built in name/value pair attribute? Dan F 2009-08-06T02:13:06Z 2009-08-06T02:13:06Z Yeah, what Scott said. I'm after an attribute, not the data type :-) http://stackoverflow.com/questions/1080459/calling-javascript-from-sifr-replaced-anchor-tags/1081709#1081709 Comment by Dan F on Calling javascript from sifr replaced anchor tags? Dan F 2009-07-04T15:32:10Z 2009-07-04T15:32:10Z To be honest, I'm not entirely sure, I've not used sIFR with links before. There's a couple of handy looking callbacks at <a href="http://wiki.novemberborn.net/sifr3/JavaScript%2BMethods" rel="nofollow">wiki.novemberborn.net/sifr3/JavaScript%2BMethods/&hellip;</a> - modifyContentString or modifyContent could probably be used to replace the links with spans before sIFR uses them, that way they'll not end up as navigation elements in the movie. It's worth a shot :-)