User Mike Blandford - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:05:10Z http://stackoverflow.com/feeds/user/28643 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1908725/silverlight-button-style-gets-stuck-on-fullscreen 0 Silverlight Button Style gets stuck on fullscreen Mike Blandford 2009-12-15T16:41:34Z 2009-12-16T15:36:12Z <p>So I have a number of buttons in Silverlight that I've made from images. In each case the button has a regular image and a hover image. I've used Blend to have the hover image fade in over .15 seconds on hover. </p> <p><strong>The problem with this is that I can't figure out how to access the images anymore, since they are embedded in the style.</strong> So, I have a separate style for each button, instead of a single UserControl with two interchangable images.</p> <p>Also I have a set of two buttons: FullScreen and ExitFullScreen. The hover image gets stuck in this case:</p> <ol> <li>Press fullscreen. The exit fullscreen button is now in a different place.</li> <li>Press exit fullscreen. The fullscreen button is back in the original place. The hover animation is displayed, even though the mouse is not over the button.</li> </ol> <p>Code:-</p> <pre><code>&lt;Style x:Key="ExitFullScreenButton" TargetType="Button"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="Button"&gt; &lt;Grid&gt; &lt;VisualStateManager.VisualStateGroups&gt; &lt;VisualStateGroup x:Name="FocusStates"&gt; &lt;VisualState x:Name="Focused"/&gt; &lt;VisualState x:Name="Unfocused"/&gt; &lt;/VisualStateGroup&gt; &lt;VisualStateGroup x:Name="CommonStates"&gt; &lt;VisualStateGroup.Transitions&gt; &lt;VisualTransition GeneratedDuration="00:00:00.1500000" To="MouseOver"/&gt; &lt;/VisualStateGroup.Transitions&gt; &lt;VisualState x:Name="Normal"/&gt; &lt;VisualState x:Name="MouseOver"&gt; &lt;Storyboard&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="image" Storyboard.TargetProperty="(UIElement.Opacity)"&gt; &lt;EasingDoubleKeyFrame KeyTime="00:00:00" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/VisualState&gt; &lt;VisualState x:Name="Pressed"/&gt; &lt;VisualState x:Name="Disabled"/&gt; &lt;/VisualStateGroup&gt; &lt;/VisualStateManager.VisualStateGroups&gt; &lt;Image Source="Images/ControlBar/exitFullScreenButton.png"/&gt; &lt;Image x:Name="image" Opacity="0" Source="Images/ControlBar/exitFullScreenButtonHover.png"/&gt; &lt;ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="" ToolTipService.ToolTip="Full Screen"/&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;Button x:Name="ExitFullScreenButton" Click="ExitFullScreenButton_Click" Canvas.Top="14" Style="{StaticResource ExitFullScreenButton}" Width="32" Content="Button" Visibility="Collapsed"/&gt; </code></pre> http://stackoverflow.com/questions/1908725/silverlight-button-style-gets-stuck-on-fullscreen/1915420#1915420 0 Answer by Mike Blandford for Silverlight Button Style gets stuck on fullscreen Mike Blandford 2009-12-16T15:36:12Z 2009-12-16T15:36:12Z <p>I ended up just making a user control and doing the animation in code.</p> <pre><code>private Storyboard hoverAnimation = new Storyboard(); private void CreateAnimation() { SizeChanged += OnSizeChanged; Duration duration = new Duration(TimeSpan.FromMilliseconds(150)); hoverAnimation.Duration = duration; DoubleAnimation animation = new DoubleAnimation(); animation.Duration = duration; hoverAnimation.Children.Add(animation); Storyboard.SetTarget(animation, HoverIcon); Storyboard.SetTargetProperty(animation, new PropertyPath(Image.OpacityProperty)); animation.To = 1; } </code></pre> http://stackoverflow.com/questions/1901835/silverlight-white-text-with-black-border 0 Silverlight White text with Black Border? Mike Blandford 2009-12-14T16:14:02Z 2009-12-15T16:53:09Z <p>I saw that you can do a dropshadow: <a href="http://pagebrooks.com/archive/2009/03/30/easy-drop-shadows-on-text-in-silverlight-3.aspx" rel="nofollow">http://pagebrooks.com/archive/2009/03/30/easy-drop-shadows-on-text-in-silverlight-3.aspx</a></p> <p>Can you also do a text border, like white colored text with a black border around each glyph?</p> <p>My problem is actually this:</p> <p>In our web application, a user can pick ANY color for a background, and we're going to put their username in that background. How can I write the username text so that it is visible?</p> http://stackoverflow.com/questions/338385/how-do-i-tell-wcf-to-skip-verification-of-the-certificate 3 How do I tell WCF to skip verification of the certificate? Mike Blandford 2008-12-03T19:09:31Z 2009-12-01T11:06:00Z <p>Trying to make a <a href="http://en.wikipedia.org/wiki/Web%5Fservice" rel="nofollow">web service</a> call to an <a href="http://en.wikipedia.org/wiki/HTTP%5FSecure" rel="nofollow">HTTPS</a> endpoint in my <a href="http://en.wikipedia.org/wiki/Microsoft%5FSilverlight" rel="nofollow">Silverlight</a> application results in this error: "Could not find a base address that matches scheme https for the endpoint with binding WSHttpBinding. Registered base address schemes are [http]"</p> <p>The same problem as was posted here:</p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/4c19271a-f5e6-4659-9e06-b556dbdcaf82/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/4c19271a-f5e6-4659-9e06-b556dbdcaf82/</a></p> <p>So, one of the suggestions was this: "The other issue might be that the cert name and the machine name don't agree, and this is causing <a href="http://en.wikipedia.org/wiki/Windows%5FCommunication%5FFoundation" rel="nofollow">WCF</a> to have fits. If this is the case, you can tell WCF to skip verification of the cert."</p> <p>Well, I <strong>do</strong> get a certificate error because this is just a demo server.</p> <p>Here's how I set up my client:</p> <pre><code>BasicHttpBinding binding = new BasicHttpBinding(); binding.Security.Mode = BasicHttpSecurityMode.Transport; _ws = new AnnotationService.AnnotationClient(binding, new EndpointAddress(myAddress)); </code></pre> <p>How can I tell WCF to skip the verification?</p> http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working/1809638#1809638 0 Answer by Mike Blandford for SWFUpload on HTTPS not working Mike Blandford 2009-11-27T16:29:39Z 2009-11-27T16:29:39Z <p><a href="http://swfupload.org/forum/generaldiscussion/92" rel="nofollow">2038 Is a Flash IO Error:</a></p> <p>"Flash IO Errors are not very helpful. The same couple of error numbers are returned for just about everything.</p> <p>Here are some common issues that cause these error codes:</p> <ul> <li>Invalid URL</li> <li>Server max post size or max upload size exceeded</li> <li>Server unexpectedly terminates the connection</li> <li>Zero byte file uploaded</li> <li>Basic Authentication failed</li> </ul> <p>To debug these issues I first verify that my upload is working using a standard HTML upload form pointing at my upload.php"</p> <p>If it were http I'd suggest using fiddler or wireshark but I don't think that will help for https.</p> http://stackoverflow.com/questions/1808508/does-anyone-know-where-i-might-find-a-file-based-multi-way-b-tree-class-for-c/1808638#1808638 0 Answer by Mike Blandford for Does anyone know where I might find a file based multi-way B-Tree Class for c#? Mike Blandford 2009-11-27T12:58:54Z 2009-11-27T12:58:54Z <p>Create a <a href="http://www.go4expert.com/forums/showthread.php?t=9699" rel="nofollow">C# wrapper</a> that calls the C/C++ code?</p> http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716873#1716873 0 Answer by Mike Blandford for JavaScript: document.getElementById slow performance? Mike Blandford 2009-11-11T17:43:24Z 2009-11-11T17:43:24Z <p>So all the "yes" answers were bugging me, so I <strong>actually timed this to see if getElementById was slow!</strong></p> <p>Here are the results (<strong>for a page with 10,000 elements on it</strong>):</p> <p>IE8 getElementById: 0.4844 ms<br/> IE8 id array lookup: 0.0062 ms</p> <p>Chrome getElementById: 0.0039 ms<br/> Chrome id array lookup: 0.0006 ms</p> <p>Firefox 3.5 was comparable to chrome.</p> <p>Half a millisecond per function call isn't going to get me to use an array ;) But maybe it's worse on IE6, which I don't have installed. </p> <p>Here's my script:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; var numEles = 10000; var idx = {}; function test(){ generateElements(); var t0 = (new Date()).getTime(); var x = selectElementsById(); var t1 = (new Date()).getTime(); var time = t1 - t0; generateIndex(); var t2 = (new Date()).getTime(); var x = selectElementsWithIndex(); var t3 = (new Date()).getTime(); var idxTime = t3 - t2; var msg = "getElementById time = " + (time / numEles) + " ms (for one call)\n" + "Index Time = " + (idxTime/ numEles) + " ms (for one call)"; alert(msg); } function generateElements(){ var d = document.getElementById("mainDiv"); var str = []; for(var i=0;i&lt;numEles;i++){ str.push("&lt;div id='d_" + i + "' &gt;" + i + "&lt;/div&gt;"); } d.innerHTML = str.join(''); } function selectElementsById(){ var eles = []; for(var i=0;i&lt;numEles;i++){ var id = ((i * 99) % numEles); eles.push(document.getElementById("d_" + id)); } return eles; } function generateIndex(){ for(var i=0;i&lt;numEles;i++){ var id = "d_" + i; idx[id] = document.getElementById(id); } } function selectElementsWithIndex(){ var eles = []; for(var i=0;i&lt;numEles;i++){ var id = ((i * 99) % numEles); eles.push(idx["d_" + id]); } return eles; } &lt;/script&gt; &lt;/head&gt; &lt;body onload="javascript:test();" &gt; &lt;div id="mainDiv" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716482#1716482 0 Answer by Mike Blandford for JavaScript: document.getElementById slow performance? Mike Blandford 2009-11-11T16:42:39Z 2009-11-11T16:42:39Z <p>No, there would not be a significant performance gain. Your performance problems lie elsewhere. The browser has its own index on element id -> element object.</p> <p>If you want to find out why your code is slow, it is very important to time it because the slow part is probably not what you'd expect (I've found this out the hard way). You can do so like this:</p> <pre><code>var t0 = (new Date()).getTime(); var t1 = (new Date()).getTime(); var time = t1 - t0; </code></pre> <p>Although it's important to note that the accuracy here is 15ms, meaning if something takes 14ms it might show up as 0ms in some browsers.</p> <p>Here's what your code would look like in jQuery:</p> <pre><code>$("#desc").attr("href", "#") .click(function(){}) .css("text-decoration", "none"); </code></pre> http://stackoverflow.com/questions/1710721/silverlight-background-thread-to-measure-height 1 Silverlight background thread to measure height Mike Blandford 2009-11-10T19:52:59Z 2009-11-10T20:12:40Z <pre><code>Thread MeasureThread = new Thread(delegate() { TextBlock tb = new TextBlock(); }); MeasureThread.Start(); </code></pre> <p>This throws an invalid cross thread access exception, even though this particular TextBlock would never be added to the visual tree. I realize that I could probably wrap it with Dispatcher.BeginInvoke, but that seems to defeat the point of using a background thread. I wanted to use this textbox to calculate the height of some text, for 1000+ different texts. I was hoping to be able to do this calculation in a background thread.</p> http://stackoverflow.com/questions/1659093/how-to-play-mp3-stream-using-meidaelement-class-from-wpf/1659164#1659164 0 Answer by Mike Blandford for How to play mp3 stream using MeidaElement class from WPF? Mike Blandford 2009-11-02T02:25:00Z 2009-11-02T02:25:00Z <pre><code>MemoryStream s; ... MediaElement m = new MediaElement(); m.SetSource(s); </code></pre> http://stackoverflow.com/questions/1657313/how-to-properly-use-quotes-in-javascript/1657326#1657326 0 Answer by Mike Blandford for how to properly use quotes in javascript Mike Blandford 2009-11-01T14:37:24Z 2009-11-01T15:04:32Z <p>Edit: Oh. You need to escape it in html. Try <a href="http://us.php.net/manual/en/function.htmlspecialchars.php" rel="nofollow">htmlspecialchars</a>: </p> http://stackoverflow.com/questions/744099/javascript-bigdecimal-library 1 Javascript BigDecimal library? Mike Blandford 2009-04-13T14:38:31Z 2009-10-30T16:22:37Z <p>Is there a good javascript BigDecimal library out there?</p> <p>I saw this one: <a href="http://www.navioo.com/javascript/BigDecimal_for_JavaScript_959.html#" rel="nofollow">http://www.navioo.com/javascript/BigDecimal_for_JavaScript_959.html#</a> (also known as <a href="http://stz-ida.de/html/oss/js_bigdecimal.html.en" rel="nofollow">http://stz-ida.de/html/oss/js_bigdecimal.html.en</a>)</p> <p>But that looks like it was autogenerated from java to javascript. It's 180K and declares global variables all over the place.</p> <p>I don't really need arbitrary precision here. 7 decimal places would be good, 10-15 would be great. </p> <p>.1 + .2 in javascript is wrong in the 17th? decimal place. So if I just round all numbers to 10 decimals after each arithmetic operation, would that be enough?</p> http://stackoverflow.com/questions/1625908/what-we-most-need-in-a-language/1625943#1625943 1 Answer by Mike Blandford for What We Most Need In a Language Mike Blandford 2009-10-26T16:58:43Z 2009-10-26T16:58:43Z <p>a ton of people writing good libraries under the MIT license ;)</p> http://stackoverflow.com/questions/1625908/what-we-most-need-in-a-language/1625932#1625932 0 Answer by Mike Blandford for What We Most Need In a Language Mike Blandford 2009-10-26T16:56:41Z 2009-10-26T16:56:41Z <p>higher order functions</p> http://stackoverflow.com/questions/1611004/as-a-software-engineer-what-would-you-look-for-in-a-software-company-before-join/1611180#1611180 0 Answer by Mike Blandford for As a Software Engineer, what would you look for in a Software Company before joining it ? Mike Blandford 2009-10-23T02:54:56Z 2009-10-23T02:54:56Z <p>An office with a door. A quiet work environment is very important for getting things done. </p> http://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611137#1611137 0 Answer by Mike Blandford for Strange problem with JavaScript code. Mike Blandford 2009-10-23T02:33:51Z 2009-10-23T02:33:51Z <pre><code>var thetime = document.getElementById("thetime"); </code></pre> <p>and add id="thetime" instead of just name="thetime" to the input</p> http://stackoverflow.com/questions/1598557/scope-of-javascript-variables/1598622#1598622 0 Answer by Mike Blandford for Scope of JavaScript Variables Mike Blandford 2009-10-21T03:43:31Z 2009-10-21T03:57:58Z <p>If you're unsure about this kind of thing, you can write up a quick test program and test it. </p> <pre><code>&lt;html&gt;&lt;head&gt; &lt;script type="text/javascript"&gt; var x = document.getElementById("bob"); function helloWorld(){ alert(x == null); } &lt;/script&gt; &lt;/head&gt; &lt;body onload="javascript:helloWorld();"&gt; &lt;div id="bob"&gt;hello back!&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1575274/most-efficient-way-of-filtering-an-html-table/1575291#1575291 0 Answer by Mike Blandford for Most Efficient way of Filtering an Html Table? Mike Blandford 2009-10-15T21:47:11Z 2009-10-15T21:58:17Z <ol> <li>User enters filter and hits search.</li> <li>Ajax call to database, database has indexes on appropriate columns and the database does the filtering.</li> <li>Database returns result</li> <li>Show result in table. (Probably want it to be paged to only show 100-1000 rows at a time because 100,000 rows in a table can really slow down your browser.</li> </ol> <p><strong>Edit:</strong> Since you don't have a database, the best you're going to be able to do is run the regex over the JSON dataset and add results that match to the table. You'll want to save the JSON dataset in a variable in case they change the search. (I'm assuming that right now you're adding everything to the table and then using the jquery table plugin to filter it)</p> http://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568585#1568585 1 Answer by Mike Blandford for populate selectlist with json data in JQuery when the selectlist is loaded (not the document) Mike Blandford 2009-10-14T19:53:10Z 2009-10-14T19:53:10Z <p>If your data looks like this:</p> <pre><code>var data = [{"Text":"file1","Value":1},{"Text":"file2","Value":2}]; </code></pre> <p>then:</p> <pre><code>var str = ""; $.each(data, function(index, optionData) { str += "&lt;option value=\"" + optionData.Value + "\"&gt;" + optionData.Text + "&lt;/option&gt;"; }); </code></pre> <p>then in your click handler can put </p> <pre><code>"&lt;select&gt;" + str + "&lt;/select&gt;"; </code></pre> <p>Might have to write window[str] instead of str so that it's global</p> http://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191 1 Answer by Mike Blandford for populate selectlist with json data in JQuery when the selectlist is loaded (not the document) Mike Blandford 2009-10-14T18:38:33Z 2009-10-14T19:02:56Z <pre><code>$(function(){ $.getJSON("/Controller/GetFileCategories", null, function(data) { $("select").each(function(){ var dropdownList = this; $(dropdownList).clearSelect(); $.each(data, function(index, optionData) { var option = new Option(optionData.Text, optionData.Value); if ($.browser.msie) { dropdownList.add(option); } else { dropdownList.add(option, null); } }); }); }); }); </code></pre> <p><strong>Edit: oops. rewrote and fixed.</strong></p> <p>Also, there's a <a href="http://www.texotela.co.uk/code/jquery/select/" rel="nofollow">plugin</a> for this kind of thing</p> <p><strong>Edit: You'll have to replace $("select") with a selector that selects only the lists you want.</strong> </p> http://stackoverflow.com/questions/1544538/detecting-multiple-simultaneous-keypresses-in-c/1544546#1544546 4 Answer by Mike Blandford for Detecting multiple simultaneous keypresses in C# Mike Blandford 2009-10-09T15:38:11Z 2009-10-12T01:52:41Z <p>If you're looking for regular keys then you can store them in a list: On KeyDown, add the key to a list. On Key Up, remove it from the list. On KeyDown, check what's in the list.</p> <p>However, I'm not sure that there are keydown/keyup events for modifier keys like ctrl, shift, alt. For those you can do something like this:</p> <pre><code>bool CtrlDown = ((e.Modifiers &amp; Keys.Control) &gt; 0); bool CtrlOnlyModifierDown = ((e.ModifierKeys &amp; Keys.Control) == Keys.Control) </code></pre> http://stackoverflow.com/questions/1544769/javascript-how-do-i-call-a-function-from-a-string-name-and-pass-an-array-object/1544818#1544818 3 Answer by Mike Blandford for JavaScript - How do I call a function from a string name and pass an array object? Mike Blandford 2009-10-09T16:28:27Z 2009-10-09T16:28:27Z <pre><code>me[me.get_formatFunction()](item); </code></pre> http://stackoverflow.com/questions/1540665/jquery-spikes-cpu-in-firefox/1540685#1540685 1 Answer by Mike Blandford for jQuery spikes CPU in Firefox Mike Blandford 2009-10-08T21:46:49Z 2009-10-08T21:53:08Z <p>Does this happen in IE8 as well? IE8 has a profiler that will tell you how much time is being spent on each javascript function and how many times they get called. (Hit f12 and click profiler then hit start profiling and load your page)</p> <p>Edit: It sounds like you might be passing something unexpected to jQuery which is causing jQuery to recur infinitely.</p> <p>You might try this <a href="http://ajaxian.com/archives/jquery-logging" rel="nofollow">logging plugin</a> to see what happens before the crash</p> http://stackoverflow.com/questions/268490/jquery-document-createelement-equivalent/1533941#1533941 1 Answer by Mike Blandford for jQuery document.createElement equivalent? Mike Blandford 2009-10-07T20:19:42Z 2009-10-07T20:19:42Z <p>If you're creating a huge table, <a href="http://www.quirksmode.org/dom/innerhtml.html" rel="nofollow">innerHTML and array.push is faster than the DOM methods</a>. Especially in IE.</p> http://stackoverflow.com/questions/1253289/c-silverlight-webclient-get-content-type-of-response/1533576#1533576 0 Answer by Mike Blandford for C# Silverlight WebClient get Content-Type of Response? Mike Blandford 2009-10-07T19:11:38Z 2009-10-07T19:11:38Z <p>An easier solution might be to have the client/server code break the upload/download into chunks and send them one at a time. Then you can update your progress bar after each chunk. Of course, the smaller your chunk size the slower it will go.</p> <p>Also: you could tell the server what content type it is via query string argument?</p> http://stackoverflow.com/questions/1253289/c-silverlight-webclient-get-content-type-of-response/1533563#1533563 0 Answer by Mike Blandford for C# Silverlight WebClient get Content-Type of Response? Mike Blandford 2009-10-07T19:09:29Z 2009-10-07T19:09:29Z <p>You can do it like <a href="http://mattberseth.com/blog/2008/07/aspnet%5Ffile%5Fupload%5Fwith%5Frealti%5F1.html" rel="nofollow">this</a> if your server is asp.net or like <a href="http://pecl.php.net/package/uploadprogress" rel="nofollow">this</a> if it's php. These are solutions for upload progress, they might be able to be modified for download progress, but not easily.</p> <p>The idea is that they rewrote the server code that does the upload to save the progress with an id, and then the client polls the server to get the current progress.</p> http://stackoverflow.com/questions/1533474/jquery-focus-on-an-input-field-in-a-form-on-pageload/1533486#1533486 0 Answer by Mike Blandford for Jquery - Focus on an input field in a form on pageload? Mike Blandford 2009-10-07T18:53:39Z 2009-10-07T18:53:39Z <p>It does work in the following simple example. Therefore there is something else going on on your page that causes the input to lose focus. I suggest using setTimeout to set the focus.</p> <pre><code> &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;test!&lt;/title&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#Username').focus(); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input id="Username" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1532819/algorithm-efficient-way-to-remove-duplicate-integers-from-an-array/1532914#1532914 -1 Answer by Mike Blandford for Algorithm: efficient way to remove duplicate integers from an array Mike Blandford 2009-10-07T17:02:59Z 2009-10-07T17:02:59Z <p>It'd be cool if you had a good DataStructure that could quickly tell if it contains an integer. Perhaps a tree of some sort.</p> <pre><code>DataStructure elementsSeen = new DataStructure(); int elementsRemoved = 0; for(int i=0;i&lt;array.Length;i++){ if(elementsSeen.Contains(array[i]) elementsRemoved++; else array[i-elementsRemoved] = array[i]; } array.Length = array.Length - elementsRemoved; </code></pre> http://stackoverflow.com/questions/1230227/jquery-toggle-method-slow-on-1000-ul/1505548#1505548 0 Answer by Mike Blandford for JQuery Toggle Method Slow on 1000+ UL Mike Blandford 2009-10-01T18:11:23Z 2009-10-01T18:11:23Z <p>I'm not surprised at all that this is slow if your treeview is that big. Silverlight 3 handles this problem with <a href="http://www.kirupa.com/net/ui%5Fvirtualization%5Fpg1.htm" rel="nofollow">UI Virtualization</a>.</p> <p>You'll have to roll your own in javascript, but it shouldn't be that hard. Just make a huge blank div that's the size of what the rendered tree would have been, and put it inside a scrollable div, and then only render what should show up. Change it on the onscroll event.</p> http://stackoverflow.com/questions/1504871/options-for-initialization-a-string-array/1504893#1504893 1 Answer by Mike Blandford for options for initialization a string array Mike Blandford 2009-10-01T16:07:55Z 2009-10-01T16:07:55Z <pre><code>string[] str = new string[]{"1","2"}; string[] str = new string[4]; </code></pre> http://stackoverflow.com/questions/1901835/silverlight-white-text-with-black-border/1902953#1902953 Comment by Mike Blandford on Silverlight White text with Black Border? Mike Blandford 2009-12-15T16:48:54Z 2009-12-15T16:48:54Z Looks cool, but that's white text with a gray outline, and I need black. http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716327#1716327 Comment by Mike Blandford on JavaScript: document.getElementById slow performance? Mike Blandford 2009-11-11T16:52:38Z 2009-11-11T16:52:38Z In IE, the redraw is immediate. I'm not sure about other browsers http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716327#1716327 Comment by Mike Blandford on JavaScript: document.getElementById slow performance? Mike Blandford 2009-11-11T16:51:38Z 2009-11-11T16:51:38Z Browser redraws definitely <i>can</i> be a performance problem. Even if you only set the style once per element, that's one browser redraw per element. I've actually optimized this before by removing a table from the dom, modifying a bunch of its cells, and then re-adding it to the dom so there would only be 1 redraw. http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716359#1716359 Comment by Mike Blandford on JavaScript: document.getElementById slow performance? Mike Blandford 2009-11-11T16:44:20Z 2009-11-11T16:44:20Z That link doesn't apply. It's using document.Images not document.getElementById http://stackoverflow.com/questions/1659104/best-approach-to-animate-physics-in-silverlight Comment by Mike Blandford on Best approach to animate physics in Silverlight? Mike Blandford 2009-11-02T02:22:22Z 2009-11-02T02:22:22Z That's what I would do - it seems the easiest. http://stackoverflow.com/questions/1626328/silverlight-changes-the-io-stream-to-byte Comment by Mike Blandford on Silverlight changes the io.Stream to byte[] Mike Blandford 2009-10-26T18:21:46Z 2009-10-26T18:21:46Z Why do you want this? Are you trying to get an upload progress bar? http://stackoverflow.com/questions/1625831/updateprogress-and-fileupload-problem Comment by Mike Blandford on UpdateProgress and FileUpload problem Mike Blandford 2009-10-26T17:56:08Z 2009-10-26T17:56:08Z try using IE Developer Toolbar or Firebug http://stackoverflow.com/questions/1625208/print-content-of-javascript-object/1625267#1625267 Comment by Mike Blandford on Print content of JavaScript object? Mike Blandford 2009-10-26T15:00:48Z 2009-10-26T15:00:48Z Might want to add if (o.hasOwnProperty(p)) inside the loop http://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611137#1611137 Comment by Mike Blandford on Strange problem with JavaScript code. Mike Blandford 2009-10-23T02:37:41Z 2009-10-23T02:37:41Z that depends on where you do it. http://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611134#1611134 Comment by Mike Blandford on Strange problem with JavaScript code. Mike Blandford 2009-10-23T02:37:07Z 2009-10-23T02:37:07Z It would be document.getElementsByName(&quot;foo&quot;)[0]. &quot;getElementByName&quot; is not a function http://stackoverflow.com/questions/1598557/scope-of-javascript-variables/1598621#1598621 Comment by Mike Blandford on Scope of JavaScript Variables Mike Blandford 2009-10-21T03:53:49Z 2009-10-21T03:53:49Z I tested this and it's correct. http://stackoverflow.com/questions/744099/javascript-bigdecimal-library/1575569#1575569 Comment by Mike Blandford on Javascript BigDecimal library? Mike Blandford 2009-10-16T15:27:48Z 2009-10-16T15:27:48Z wow, BigNumber uses a &quot;with&quot; statement. First time I've seen that apart from reading about it in the &quot;bad practice, never use&quot; section of a js book. I like that that source is so small on BigNumber. If I decide to use BigDecimal I'd spend some time refactoring it. It looks like a lot of the 160k is comments anyway. http://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191 Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document) Mike Blandford 2009-10-14T19:53:32Z 2009-10-14T19:53:32Z added as a new answer so i could put in code blocks http://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191 Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document) Mike Blandford 2009-10-14T19:36:41Z 2009-10-14T19:36:41Z You should be able to go to /Controller/GetFileCategories in your browser and see what the JSON looks like. If you post that I can probably help http://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191 Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document) Mike Blandford 2009-10-14T19:18:02Z 2009-10-14T19:18:02Z Does the ajax response change between clicks? If not, I would make the ajax call on document ready, store the response in a variable, and when the user clicks on the #moreFiles, then populate the select there.