User Mike Blandford - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T20:05:10Zhttp://stackoverflow.com/feeds/user/28643http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908725/silverlight-button-style-gets-stuck-on-fullscreen0Silverlight Button Style gets stuck on fullscreenMike Blandford2009-12-15T16:41:34Z2009-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><Style x:Key="ExitFullScreenButton" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="FocusStates">
<VisualState x:Name="Focused"/>
<VisualState x:Name="Unfocused"/>
</VisualStateGroup>
<VisualStateGroup x:Name="CommonStates">
<VisualStateGroup.Transitions>
<VisualTransition GeneratedDuration="00:00:00.1500000" To="MouseOver"/>
</VisualStateGroup.Transitions>
<VisualState x:Name="Normal"/>
<VisualState x:Name="MouseOver">
<Storyboard>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="image" Storyboard.TargetProperty="(UIElement.Opacity)">
<EasingDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="Pressed"/>
<VisualState x:Name="Disabled"/>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Image Source="Images/ControlBar/exitFullScreenButton.png"/>
<Image x:Name="image" Opacity="0" Source="Images/ControlBar/exitFullScreenButtonHover.png"/>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="" ToolTipService.ToolTip="Full Screen"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Button x:Name="ExitFullScreenButton" Click="ExitFullScreenButton_Click" Canvas.Top="14"
Style="{StaticResource ExitFullScreenButton}"
Width="32" Content="Button" Visibility="Collapsed"/>
</code></pre>
http://stackoverflow.com/questions/1908725/silverlight-button-style-gets-stuck-on-fullscreen/1915420#19154200Answer by Mike Blandford for Silverlight Button Style gets stuck on fullscreenMike Blandford2009-12-16T15:36:12Z2009-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-border0Silverlight White text with Black Border?Mike Blandford2009-12-14T16:14:02Z2009-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-certificate3How do I tell WCF to skip verification of the certificate?Mike Blandford2008-12-03T19:09:31Z2009-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#18096380Answer by Mike Blandford for SWFUpload on HTTPS not workingMike Blandford2009-11-27T16:29:39Z2009-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#18086380Answer by Mike Blandford for Does anyone know where I might find a file based multi-way B-Tree Class for c#?Mike Blandford2009-11-27T12:58:54Z2009-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#17168730Answer by Mike Blandford for JavaScript: document.getElementById slow performance?Mike Blandford2009-11-11T17:43:24Z2009-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><html>
<head>
<script type="text/javascript">
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<numEles;i++){
str.push("<div id='d_" + i + "' >" + i + "</div>");
}
d.innerHTML = str.join('');
}
function selectElementsById(){
var eles = [];
for(var i=0;i<numEles;i++){
var id = ((i * 99) % numEles);
eles.push(document.getElementById("d_" + id));
}
return eles;
}
function generateIndex(){
for(var i=0;i<numEles;i++){
var id = "d_" + i;
idx[id] = document.getElementById(id);
}
}
function selectElementsWithIndex(){
var eles = [];
for(var i=0;i<numEles;i++){
var id = ((i * 99) % numEles);
eles.push(idx["d_" + id]);
}
return eles;
}
</script>
</head>
<body onload="javascript:test();" >
<div id="mainDiv" />
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716482#17164820Answer by Mike Blandford for JavaScript: document.getElementById slow performance?Mike Blandford2009-11-11T16:42:39Z2009-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-height1Silverlight background thread to measure heightMike Blandford2009-11-10T19:52:59Z2009-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#16591640Answer by Mike Blandford for How to play mp3 stream using MeidaElement class from WPF?Mike Blandford2009-11-02T02:25:00Z2009-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#16573260Answer by Mike Blandford for how to properly use quotes in javascriptMike Blandford2009-11-01T14:37:24Z2009-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-library1Javascript BigDecimal library?Mike Blandford2009-04-13T14:38:31Z2009-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#16259431Answer by Mike Blandford for What We Most Need In a LanguageMike Blandford2009-10-26T16:58:43Z2009-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#16259320Answer by Mike Blandford for What We Most Need In a LanguageMike Blandford2009-10-26T16:56:41Z2009-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#16111800Answer by Mike Blandford for As a Software Engineer, what would you look for in a Software Company before joining it ?Mike Blandford2009-10-23T02:54:56Z2009-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#16111370Answer by Mike Blandford for Strange problem with JavaScript code.Mike Blandford2009-10-23T02:33:51Z2009-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#15986220Answer by Mike Blandford for Scope of JavaScript VariablesMike Blandford2009-10-21T03:43:31Z2009-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><html><head>
<script type="text/javascript">
var x = document.getElementById("bob");
function helloWorld(){
alert(x == null);
}
</script>
</head>
<body onload="javascript:helloWorld();">
<div id="bob">hello back!</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1575274/most-efficient-way-of-filtering-an-html-table/1575291#15752910Answer by Mike Blandford for Most Efficient way of Filtering an Html Table?Mike Blandford2009-10-15T21:47:11Z2009-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#15685851Answer by Mike Blandford for populate selectlist with json data in JQuery when the selectlist is loaded (not the document)Mike Blandford2009-10-14T19:53:10Z2009-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 += "<option value=\"" + optionData.Value + "\">" + optionData.Text + "</option>";
});
</code></pre>
<p>then in your click handler can put </p>
<pre><code>"<select>" + str + "</select>";
</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#15681911Answer by Mike Blandford for populate selectlist with json data in JQuery when the selectlist is loaded (not the document)Mike Blandford2009-10-14T18:38:33Z2009-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#15445464Answer by Mike Blandford for Detecting multiple simultaneous keypresses in C#Mike Blandford2009-10-09T15:38:11Z2009-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 & Keys.Control) > 0);
bool CtrlOnlyModifierDown = ((e.ModifierKeys & 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#15448183Answer by Mike Blandford for JavaScript - How do I call a function from a string name and pass an array object?Mike Blandford2009-10-09T16:28:27Z2009-10-09T16:28:27Z<pre><code>me[me.get_formatFunction()](item);
</code></pre>
http://stackoverflow.com/questions/1540665/jquery-spikes-cpu-in-firefox/1540685#15406851Answer by Mike Blandford for jQuery spikes CPU in FirefoxMike Blandford2009-10-08T21:46:49Z2009-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#15339411Answer by Mike Blandford for jQuery document.createElement equivalent?Mike Blandford2009-10-07T20:19:42Z2009-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#15335760Answer by Mike Blandford for C# Silverlight WebClient get Content-Type of Response?Mike Blandford2009-10-07T19:11:38Z2009-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#15335630Answer by Mike Blandford for C# Silverlight WebClient get Content-Type of Response?Mike Blandford2009-10-07T19:09:29Z2009-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#15334860Answer by Mike Blandford for Jquery - Focus on an input field in a form on pageload?Mike Blandford2009-10-07T18:53:39Z2009-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> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>test!</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#Username').focus();
});
</script>
</head>
<body>
<input id="Username" />
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1532819/algorithm-efficient-way-to-remove-duplicate-integers-from-an-array/1532914#1532914-1Answer by Mike Blandford for Algorithm: efficient way to remove duplicate integers from an arrayMike Blandford2009-10-07T17:02:59Z2009-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<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#15055480Answer by Mike Blandford for JQuery Toggle Method Slow on 1000+ ULMike Blandford2009-10-01T18:11:23Z2009-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#15048931Answer by Mike Blandford for options for initialization a string arrayMike Blandford2009-10-01T16:07:55Z2009-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#1902953Comment by Mike Blandford on Silverlight White text with Black Border?Mike Blandford2009-12-15T16:48:54Z2009-12-15T16:48:54ZLooks 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#1716327Comment by Mike Blandford on JavaScript: document.getElementById slow performance?Mike Blandford2009-11-11T16:52:38Z2009-11-11T16:52:38ZIn IE, the redraw is immediate. I'm not sure about other browsershttp://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716327#1716327Comment by Mike Blandford on JavaScript: document.getElementById slow performance?Mike Blandford2009-11-11T16:51:38Z2009-11-11T16:51:38ZBrowser 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#1716359Comment by Mike Blandford on JavaScript: document.getElementById slow performance?Mike Blandford2009-11-11T16:44:20Z2009-11-11T16:44:20ZThat link doesn't apply. It's using document.Images not document.getElementByIdhttp://stackoverflow.com/questions/1659104/best-approach-to-animate-physics-in-silverlightComment by Mike Blandford on Best approach to animate physics in Silverlight?Mike Blandford2009-11-02T02:22:22Z2009-11-02T02:22:22ZThat's what I would do - it seems the easiest.http://stackoverflow.com/questions/1626328/silverlight-changes-the-io-stream-to-byteComment by Mike Blandford on Silverlight changes the io.Stream to byte[]Mike Blandford2009-10-26T18:21:46Z2009-10-26T18:21:46ZWhy do you want this? Are you trying to get an upload progress bar?http://stackoverflow.com/questions/1625831/updateprogress-and-fileupload-problemComment by Mike Blandford on UpdateProgress and FileUpload problemMike Blandford2009-10-26T17:56:08Z2009-10-26T17:56:08Ztry using IE Developer Toolbar or Firebughttp://stackoverflow.com/questions/1625208/print-content-of-javascript-object/1625267#1625267Comment by Mike Blandford on Print content of JavaScript object?Mike Blandford2009-10-26T15:00:48Z2009-10-26T15:00:48ZMight want to add if (o.hasOwnProperty(p)) inside the loophttp://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611137#1611137Comment by Mike Blandford on Strange problem with JavaScript code.Mike Blandford2009-10-23T02:37:41Z2009-10-23T02:37:41Zthat depends on where you do it.http://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611134#1611134Comment by Mike Blandford on Strange problem with JavaScript code.Mike Blandford2009-10-23T02:37:07Z2009-10-23T02:37:07ZIt would be document.getElementsByName("foo")[0]. "getElementByName" is not a functionhttp://stackoverflow.com/questions/1598557/scope-of-javascript-variables/1598621#1598621Comment by Mike Blandford on Scope of JavaScript VariablesMike Blandford2009-10-21T03:53:49Z2009-10-21T03:53:49ZI tested this and it's correct.http://stackoverflow.com/questions/744099/javascript-bigdecimal-library/1575569#1575569Comment by Mike Blandford on Javascript BigDecimal library?Mike Blandford2009-10-16T15:27:48Z2009-10-16T15:27:48Zwow, BigNumber uses a "with" statement. First time I've seen that apart from reading about it in the "bad practice, never use" 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#1568191Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document)Mike Blandford2009-10-14T19:53:32Z2009-10-14T19:53:32Zadded as a new answer so i could put in code blockshttp://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document)Mike Blandford2009-10-14T19:36:41Z2009-10-14T19:36:41ZYou 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 helphttp://stackoverflow.com/questions/1567962/populate-selectlist-with-json-data-in-jquery-when-the-selectlist-is-loaded-not-t/1568191#1568191Comment by Mike Blandford on populate selectlist with json data in JQuery when the selectlist is loaded (not the document)Mike Blandford2009-10-14T19:18:02Z2009-10-14T19:18:02ZDoes 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.