User AnthonyWJones - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:17:48Z http://stackoverflow.com/feeds/user/17516 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820564/how-to-create-modal-alerts-confirms-in-javascript/1820594#1820594 0 Answer by AnthonyWJones for How to create modal alerts/confirms in Javascript? AnthonyWJones 2009-11-30T15:45:59Z 2009-11-30T15:45:59Z <p>Both IE and Firefox 3 have a showModalDialog method which would allow you to display an entire web page modally. However for a truely cross-browser solution you can't use that.</p> <p>Many of the popular frameworks provide a mechanism to do it by displaying a HTML element and disabling access to the rest of the web page whilst the element is displayed.</p> http://stackoverflow.com/questions/1809363/system-data-datatable-in-silverlight-4/1819865#1819865 0 Answer by AnthonyWJones for System.Data.DataTable in Silverlight 4? AnthonyWJones 2009-11-30T13:36:34Z 2009-11-30T13:36:34Z <p>No this is not in SL4 and is unlikely to ever make it into later versions either. It represents an older approach to data access. In SL you would be expected to integrate with Entity Framework via WCF for this sort of functionality.</p> http://stackoverflow.com/questions/1819058/silverlight-grid-with-auto-width-and-height/1819087#1819087 0 Answer by AnthonyWJones for Silverlight grid with auto width and height AnthonyWJones 2009-11-30T10:48:22Z 2009-11-30T10:48:22Z <p>You need place Width:100% and Height:100% in the style of the object tag in the HTML holding it. You also need to make sure the containing element (probably the body) has the height of the view port. This is done by ensuring the style "height:100%; overflow:hidden;" is on the html tag and the body tag. Put margin:0px on the body and place the attribute scroll="no" on the body as well for good measure. Now your Silverlight control owns and sizes to the browsers client window area.</p> <p>Also remove the Width="Auto" and Height="Auto" from the UserControl.</p> http://stackoverflow.com/questions/1818925/web-garden-properties-on-iis-6-0-running-several-asp-net-web-sites/1819066#1819066 0 Answer by AnthonyWJones for Web Garden properties on IIS 6.0 running several ASP.NET web sites AnthonyWJones 2009-11-30T10:43:47Z 2009-11-30T10:43:47Z <p>From a "development" point of view I'd put that "2nd site" (the one returning 503) in its own application pool. If that is already the case then mucking about with Web Gardens might fix it, might cause other problems, doesn't tell you why you were getting 503's in the first place.</p> http://stackoverflow.com/questions/1813645/displaying-symbol-in-silverlight/1816940#1816940 1 Answer by AnthonyWJones for Displaying ® symbol in Silverlight. AnthonyWJones 2009-11-29T22:03:00Z 2009-11-29T22:03:00Z <p>The size of the ® symbol varies with the font being used. Some fonts draw it as a superscript others draw it as a standard character. For example the "Lucida Sans Unicode" font treats it like a Superscript where as the "Lucida Grande" font draws it like a normal character. Hence you need to be careful which font you use to render it.</p> <p>I'm seeing a case in point just as I write this. The text box where I'm writing this in SO has the ® character as a superscript whereas looking at the preview box below the character is normal size.</p> http://stackoverflow.com/questions/1813472/get-notified-of-silverlight-binding-errors/1814024#1814024 0 Answer by AnthonyWJones for Get Notified of Silverlight Binding Errors? AnthonyWJones 2009-11-28T22:50:32Z 2009-11-28T22:50:32Z <p>See Justin's answer to this question:-</p> <p><a href="http://how-does-one-detect-setbinding-sucess-or-failure-in-silverlight" rel="nofollow">how does one detect setbinding sucess or failure in silverlight</a></p> http://stackoverflow.com/questions/1813320/getting-javascript-to-search-an-array-within-an-array/1813447#1813447 0 Answer by AnthonyWJones for Getting javascript to search an array within an array AnthonyWJones 2009-11-28T19:07:47Z 2009-11-28T19:07:47Z <p>You have a number of basic errors which ultimately stem from having too many variables. Here is your code refactored:-</p> <pre><code>mymusic=[{title:"a",artist:"b",artwork:"c",tracks:[{tracktitle:"d",trackmp3:"e"}]}]; var albumScore=0; var artistScore=0; var tracksScore=0; stringToSearchFor="d"; for (var i=0; i &lt; mymusic.length; i++) { if( mymusic[i].title.match(stringToSearchFor)) albumScore += 1; if( mymusic[i].artist.match(stringToSearchFor)) artistScore += 1; for (var j = 0; j &lt; mymusic[i].tracks.length; j++) { if (mymusic[i].tracks[j].tracktitle.match(stringToSearchFor)) tracksScore += 1 } } if (albumScore != 0) alert(albumScore + " match(es) found in Albums"); else alert("No matches found in Albums"); if (artistScore != 0) alert(artistScore + " match(es) found in Artists"); else alert("No matches found in Artists"); if (tracksScore != 0) alert(tracksScore+" match(es) found in Tracks"); else alert("No matches found in Tracks"); </code></pre> http://stackoverflow.com/questions/1813286/xslt-select-distinct-but-slightly-different-to-other-examples/1813336#1813336 1 Answer by AnthonyWJones for XSLT: select distinct but slightly different to other examples AnthonyWJones 2009-11-28T18:40:16Z 2009-11-28T18:40:16Z <p>First add this key element to the top of your XSL:-</p> <pre><code>&lt;xsl:key name="tagNames" match="/a/b/*" use="name()" /&gt; </code></pre> <p>Now your for each loop can look like this:-</p> <pre><code>&lt;xsl:template match="/*"&gt; &lt;xsl:for-each select="/a/b/*[count(. | key('tagNames', name())[1]) = 1]"&gt; &lt;xsl:sort select="name()" /&gt; &lt;xsl:value-of select="name()" /&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/1812751/trying-to-inner-join-multiple-tables-but-always-returning-0-rows/1812770#1812770 1 Answer by AnthonyWJones for trying to inner join multiple tables but always returning 0 rows. AnthonyWJones 2009-11-28T15:23:44Z 2009-11-28T15:23:44Z <p>Change this:-</p> <pre><code> Applications ON Resources.id = Applications.id INNER JOIN </code></pre> <p>to this:-</p> <pre><code> Applications ON Applications.id = ApplicationResourceBridge.app_id INNER JOIN </code></pre> <p>You were trying to join the Appliciation ID to the Resource ID but these have no relationship. What you really want is to join the Application table to the Bridge table <strong>and</strong> the Resource table to the Bridge table.</p> http://stackoverflow.com/questions/1805453/caching-recordsets-in-asp-classic/1808094#1808094 2 Answer by AnthonyWJones for Caching recordsets in ASP Classic? AnthonyWJones 2009-11-27T10:59:31Z 2009-11-27T10:59:31Z <p>Technically you can assign a disconnected ADODB recordset into the Application object. However I wouldn't recommend it.</p> <p>In order to assign an object into the application object it needs to be free-threaded. An ADODB recordset is Single threaded <em>but</em> it will provide a free-threaded proxy when assigned to the application object.</p> <p>What this would mean is whenever a request needs to access the recordset the current thread on which the request is running on will block as the proxy will marshall the call to the thread where the recordset was originally created. If another request happens to be using the recordset the marshalled call will be queued.</p> <p>The problem with this is that in effect all uses of the recordset will be serialised thus creating a scalability issue. Only one request can access the recordset at the same time. </p> <p>But it gets worse. The thread that originally created the recordset could itself be processing a request, in which case nothing (except the thread itself) can access the recordset regardless of whether the recordset is actually being used or not. In addition the ASP dispatcher may still give a request to the thread even though there is an existing queue of recordset accesses on the thread.</p> <p><strong>A Solution</strong></p> <p>However you have got close to the solution. Place convert the contents of the recordset into XML but instead of saving it to a file, load it into a <code>FreeThreadedXMLDocument</code>. This object as its name suggest is a truely free threaded object, its not a proxy to a single threaded object.</p> <p>Now you can place this xml document in the application object and access it from various requests at the same time.</p> http://stackoverflow.com/questions/1807636/open-file-instead-of-save-file-in-silverlight-savefiledialog/1807891#1807891 2 Answer by AnthonyWJones for Open File Instead of Save File in Silverlight SaveFileDialog AnthonyWJones 2009-11-27T10:18:09Z 2009-11-27T10:18:09Z <p>The simple answer is: No silverlight doesn't allow that.</p> <p>If somehow you know that full file path of the file you want to open you might be able to get the hosting browser to navigate to that file but you may hit other browser based road blocks. Of course, discovering the full file path of a file is pratically impossible to do in this scenario. You'd have to get the user to paste the full path into some text box then try to convince the browser to navigate to it.</p> http://stackoverflow.com/questions/1804252/silverlight-behavior-based-on-update-of-view-model-property/1804950#1804950 1 Answer by AnthonyWJones for Silverlight behavior based on update of view model property AnthonyWJones 2009-11-26T17:47:53Z 2009-11-26T22:44:42Z <p>Something along the lines of my answer to a similar issue <a href="http://stackoverflow.com/questions/1781796/style-triggers-in-silverlight/1783575#1783575">here</a> might help.</p> <p>Here is an example of how you might apply that technique to your requirement.</p> <pre><code>&lt;Grid.Resources&gt; &lt;local:BoolToBrushConverter x:Key="Highlighter" FalseBrush="Transparent" TrueBrush="Yellow" /&gt; &lt;/Grid.Resources&gt; &lt;Border Background="{Binding ChangingProperty, Converter={StaticResource Highlighter}}"&gt; &lt;TextBlock x:Name="txtTarget" Text="{Binding SomeProperty}" /&gt; &lt;/Border&gt; </code></pre> http://stackoverflow.com/questions/1781796/style-triggers-in-silverlight/1783575#1783575 1 Answer by AnthonyWJones for Style triggers in Silverlight AnthonyWJones 2009-11-23T14:47:45Z 2009-11-26T18:29:16Z <p>A custom value converter will achieve a similar goal.</p> <pre><code> public class BoolToBrushConverter : IValueConverter { public Brush FalseBrush { get; set; } public Brush TrueBrush { get; set; } public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if (value == null) return FalseBrush; else return (bool)value ? TrueBrush : FalseBrush; } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException("This converter only works for one way binding"); } } </code></pre> <p>With this converter in place you can adjust your XAML to:-</p> <pre><code> &lt;Path Canvas.Top="20" Stroke="#FF808080" Data="M 0,20 20,0 40,20 Z" StrokeLineJoin="Round"&gt; &lt;Path.Fill&gt; &lt;Binding Path="PumpRunning" ElementName="userControl"&gt; &lt;Binding.Converter&gt; &lt;local:BoolToBrushConverter FalseBrush="DarkGray" TrueBrush="DarkGreen" /&gt; &lt;/Binding.Converter&gt; &lt;/Binding&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; </code></pre> <p>Note that since your color choice was local to your Path definition I've embedded an instance of the Converter directly into my Path definition thus acheiving the same semantic. However if you require a number of these conversions using the same pair colors you can just as easily place the Converter instance in a page resource and use the normal shorthand binding syntax.</p> http://stackoverflow.com/questions/1803934/add-sub-categories-to-a-dependency-property-in-a-workflow-activity/1804732#1804732 1 Answer by AnthonyWJones for Add sub categories to a Dependency Property in a Workflow Activity AnthonyWJones 2009-11-26T16:45:47Z 2009-11-26T16:45:47Z <p>First of all you should definitely change the type from <code>int</code> to <code>TimeSpan</code>. That has Days, Hours, Minutes, Seconds and Milliseconds.</p> <p>The input UI may not be to your liking though its just a string: d.hh:mm:ss.msecs </p> <p>However personally I would put up with that for the simplicity of using a Type specifically designed for the task. It might be possible to create a Custom editor for it though.</p> http://stackoverflow.com/questions/1803451/how-to-close-a-childwindow-from-an-usercontrol-button-loaded-inside-it/1804499#1804499 0 Answer by AnthonyWJones for How to close a ChildWindow from an UserControl button loaded inside it? AnthonyWJones 2009-11-26T15:57:31Z 2009-11-26T15:57:31Z <p>The problem the UserControl's parent is not the <code>ChildWindow</code>, its the Grid inside the child window. You need to get the parent of the parent of the <code>UserControl</code> to navigate to the <code>ChildWindow</code>:-</p> <pre><code>ChildWindow cw = (ChildWindow)((FrameworkElement)this.Parent).Parent; </code></pre> <p>However embedding this in your <code>UserControl</code> would bad practice, you would be stipulating to the consumer of your <code>UserControl</code> where the it can be sited. In the above case for the user control to work it would need to always be a direct child of the Layout root.</p> <p>A better approach would be to search up the visual tree looing for a <code>ChildWindow</code>. I would use this helper method (actually I'd place this in a helper extensions static class but I'll keep it simple here).</p> <pre><code>private IEnumerable&lt;DependencyObject&gt; Ancestors() { DependencyObject current = VisualTreeHelper.GetParent(this); while (current != null) { yield return current; current = VisualTreeHelper.GetParent(current); } } </code></pre> <p>Now you can use LINQ methods to get the ChildWindow with:-</p> <pre><code>ChildWindow cw = Ancestors().OfType&lt;ChildWindow&gt;().FirstOrDefault(); </code></pre> <p>This will find the first ancestor of your UserControl that happens to be ChildWindow. This allows your UserControl to be placed at any depth in the child windows XAML, it would still find the correct object.</p> http://stackoverflow.com/questions/1803792/c-how-to-use-ienumerator-in-a-user-defined-class/1803884#1803884 1 Answer by AnthonyWJones for C#, how to use IEnumerator in a user defined class AnthonyWJones 2009-11-26T14:12:18Z 2009-11-26T14:12:18Z <p>Whilst it may be more desirable to derive from <code>List&lt;Fruit&gt;</code> here is something to get you started if for some reason that does not suit your requirements:-</p> <pre><code>public class Basket : IEnumerable&lt;Fruit&gt; { private Fruit[] myFruit; public int Count { get; private set; } public IEnumerator&lt;Fruit&gt; GetEnumerator() { for (int i = 0; i &lt; Count; i++) yield return myFruit[i]; } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } </code></pre> http://stackoverflow.com/questions/1803660/firebug-console-window-scope-why-isnt-this-always-the-same/1803797#1803797 2 Answer by AnthonyWJones for Firebug console window scope. Why isn't "this" always the same? AnthonyWJones 2009-11-26T13:54:11Z 2009-11-26T13:54:11Z <p>The value of <code>this</code> in the console will be the same as the value of <code>this</code> in the code currently being executed. Consider:-</p> <pre><code>function outer() { // this is window var x = {n:12}; var fn = function() { // this is object {n:12} alert(this.n); } fn.call(x); } </code></pre> <p>...</p> <pre><code>&lt;img src="thing.gif" onclick="outer()" /&gt; </code></pre> <p>If you put a break point on the <code>x = {n:12}</code> line, switch to console you will find the <code>this</code> is the window. However when you step to the <code>alert</code> line <code>this</code> in the console is the object held by the <code>x</code> variable. IOW there is no distinction between <code>this</code> in the executing context and the console. Its for this reason that you can use the console to tweak values of variables and properties while debugging.</p> http://stackoverflow.com/questions/1803195/addeventlistener-and-the-scope-of-this/1803343#1803343 1 Answer by AnthonyWJones for addEventListener and the scope of this AnthonyWJones 2009-11-26T12:12:58Z 2009-11-26T12:20:41Z <p>This is the typical approach to this problem:-</p> <pre><code>(function(self) { self.chart.addEventListener('create', function() {self.fireEvent('created');}, false); })(this); </code></pre> http://stackoverflow.com/questions/1802108/how-can-we-change-zindex-of-a-silverlight-control-programmatically/1802437#1802437 1 Answer by AnthonyWJones for how can we change zindex of a silverlight control programmatically? AnthonyWJones 2009-11-26T09:02:21Z 2009-11-26T09:02:21Z <p>Only the <code>Canvas</code> panel supports a <code>ZIndex</code> property. Stackpanel doesn't because each item is placed one after the other in the panel so they shouldn't overlap each other. This can be a little annoying at times when you have animated transforms moving the items about because the previous assumption isn't actually true.</p> <p>In general though if you need to place items in a visual stack the Stackpanel isn't the right place for it. Perhaps a <code>Canvas</code> or you could use a <code>Grid</code> where the oridinal position of a element determines its "zorder" in a cell.</p> http://stackoverflow.com/questions/1796598/statefinalization-initialization-activity-only-runs-on-leaf-states/1799041#1799041 1 Answer by AnthonyWJones for Statefinalization/initialization activity only runs on leaf states AnthonyWJones 2009-11-25T18:33:54Z 2009-11-26T08:01:41Z <p>Its unfortunate that the structure of "nested states" is one of a "parent" containing "children", the designer UI re-enforces this concept. Hence its quite natural and intuative to think the way you are thinking. Its unfortunate because its wrong.</p> <p>The true relationship is one of "General" -> "Specific". Its in effect a hierachical class structure. Consider a much more familar such relationship:-</p> <pre><code>public class MySuperClass { public MySuperClass(object parameter) { } protected void DoSomething() { } } public class MySubClass : MySuperClass { protected void DoSomethingElse() { } } </code></pre> <p>Here <code>MySubClass</code> inherits <code>DoSomething</code> from <code>SuperClass</code>. The above though is broken because the <code>SuperClass</code> doesn't have a default constructor. Also parameterised constructor of <code>SuperClass</code> is not inherited by <code>SubClass</code>. In fact logically a sub-class never inherits the constructors (or destructors) of the super-class. (Yes there is some magic wiring up default constructors but thats more sugar than substance).</p> <p>Similarly the relationship between StateAcivities contained with another <code>StateActivity</code> is actually that the contained activity is a <strong>specialisation</strong> of the container. Each contained activity inherits the set of event driven activities of the container. However, each contained StateActivity is a first class discrete state in the workflow same as any other state. </p> <p>The containing activity actual becomes an abstract, it can not be transitioned to and importantly there is no real concept of transition to a state "inside" another state. By extension then there is no concept of leaving such an outer state either. As a result there is no initialization or finalization of the containing StateActivity.</p> <p>A quirk of the designer allows you to add a StateInitialization and StateFinalization then add StateActivities to a state. If you try it the other way round the designer won't let you because it knows the Initialization and Finalization will never be run.</p> <p>I realise this doesn't actually answer your question and I'm loath to say in this case "It can't be done" but if it can it will be a little hacky.</p> http://stackoverflow.com/questions/1798039/programatically-accessing-a-silverlight-static-resource/1799971#1799971 2 Answer by AnthonyWJones for Programatically Accessing a Silverlight Static Resource AnthonyWJones 2009-11-25T21:11:07Z 2009-11-25T21:11:07Z <p>Despite your comment to the contrary I doubt the use of "." in your resource key is really the source of your problem. In this situation the "." has no special meaning and would not impact how the resource is accessed. (I've tried and failed to reproduce any problem with it).</p> <p>There is though a very big difference between using the <code>{StaticResource MyName}</code> mark up extension and an attempt to find the resource programmatically.</p> <p>The markup extension causes the XamlParser to look for the specified key the <code>Resources</code> property of the <code>FrameworkElement</code> to which the property being assigned belongs. If the key is not found it looks for it in the parent <code>FrameworkElement</code> and it keeps going until it reaches the root <code>FrameworkElement</code>. If it is still not found it has a look in the Application's Resources property.</p> <p>On the other hand this code:-</p> <pre><code>string myCustomValue = this.Resources[MyCustomValue] as string; </code></pre> <p>sf just looking in the single Resources property for the user control. No attempt is made to hunt down the key in ancestors or in the application resources. Its a simple Dictionary lookup. This I suspect is what was really tripping you up.</p> <p>Having said that I would say the using "." in a resource key may not be a good idea. The "." does have meaning in various XAML scenarios already so using it in key names as well has the potential to confuse a developer reading the code even though Silverlight is quite happy with it.</p> http://stackoverflow.com/questions/1797113/why-does-multithreaded-file-transfer-improve-performance/1797168#1797168 4 Answer by AnthonyWJones for Why does multithreaded file transfer improve performance? AnthonyWJones 2009-11-25T14:13:31Z 2009-11-25T14:13:31Z <p>The tool is making use improvements in hardware which can optimise multiple read and write requests much better.</p> <p>When copying one file at a time the hardware isn't going to know that the block of data that currently is passing under the read head (or near by) will be needed of a subsquent read since the software hasn't queued that request yet.</p> <p>A single file copy these days is not very taxing task for modern disk sub-systems. By giving these hardware systems more work to do at once the tool is leveraging its improved optimising features.</p> http://stackoverflow.com/questions/1792861/accessing-an-asp-net-web-service-with-classic-asp/1796893#1796893 0 Answer by AnthonyWJones for Accessing an asp.net web service with classic asp AnthonyWJones 2009-11-25T13:24:59Z 2009-11-25T13:24:59Z <p>My first question should be "Why use Soap?". The simplest common demoninator that you have between the two is XML so thats a given. However the choice of transport can be as simple as an single .ashx or as clever as WCF service.</p> <p>Since your first consumer is using ASP why use a technology that makes it difficult for them?</p> <p>The true bottom line here is what are your security requirements? </p> http://stackoverflow.com/questions/1792386/uploading-in-asp-to-iis-5-1/1796589#1796589 0 Answer by AnthonyWJones for Uploading in ASP to IIS 5.1 AnthonyWJones 2009-11-25T12:25:28Z 2009-11-25T12:25:28Z <p>The link that Chris has posted probably covers it but just for sake of completeness I'll put my oar in.</p> <p>The default <code>AspMaxRequestEntityAllowed</code> for IIS5.1 onXP is 1GB. This is the same for IIS5 on Windows 2000. As of IIS6 this default limit was reduced to 200K.</p> <p>If your problem is indeed that you have hit this limit it means that at some point something has modified your Metabase to include this limit.</p> <p>Its most likely that this limit has been set at the W3SVC level. You can check the current level with:-</p> <pre><code>cscript adsutil.vbs get w3svc/AspMaxRequestEntityAllowed </code></pre> <p>Noet though that since it has been set its possible that its been set on the default website rather than at the w3svc root. In which case following instructions to set it on the root won't help because the value on the default website will take precedence. Check the default website value with:-</p> <pre><code>cscript adsutil.vbs get w3svc/1/AspMaxRequestEntityAllowed </code></pre> http://stackoverflow.com/questions/1792401/how-to-customize-tooltip-for-silverlight-control/1796361#1796361 0 Answer by AnthonyWJones for How to customize tooltip for silverlight control? AnthonyWJones 2009-11-25T11:29:39Z 2009-11-25T11:29:39Z <p>You're not going to be able to use the Style property in the exact way you want. The <code>ToolTipService.ToolTip</code> property is an <strong>Attached Property</strong>. You can't use a Style resource to assign a value to an attached property.</p> <p>However you can use a Style resource to style a <code>ToolTip</code> element. Hence your <code>TextBlock</code> could look like this:-</p> <pre><code>&lt;TextBlock Text="{Binding SomeProperty}"&gt; &lt;ToolTipService.ToolTip&gt; &lt;ToolTip Style="{StaticResource TipHelp}" /&gt; &lt;/ToolTipService.ToolTip&gt; &lt;/TextBlock&gt; </code></pre> <p>Now in your containers Resources you can have a style such as this:-</p> <pre><code>&lt;Style x:Key="TipHelp" TargetType="ToolTip"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;TextBox Text="{Binding SomeOtherProperty}" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>You can now customise the contents of the <code>ControlTemplate</code> to you desired ToolTip appearance wiring it up with appropriate Binding objects.</p> http://stackoverflow.com/questions/1793235/templates-in-extended-silverlight-controls/1793728#1793728 0 Answer by AnthonyWJones for Templates in extended Silverlight controls AnthonyWJones 2009-11-24T23:37:44Z 2009-11-24T23:37:44Z <p>A control can only have one default style. You need to copy the entire default style of the base control into the Generic.Xaml for you new <code>MyComboBox</code> then adjust it accordingly.</p> http://stackoverflow.com/questions/1793550/how-do-i-bind-a-silverlight-itemscontrol-inside-of-a-databound-listbox-itemtempla/1793698#1793698 1 Answer by AnthonyWJones for How do I bind a Silverlight ItemsControl inside of a databound ListBox.ItemTemplate? AnthonyWJones 2009-11-24T23:30:41Z 2009-11-24T23:30:41Z <p>First of all I don't think the <code>datainput:Label</code> control is needed here a simple <code>TextBlock</code> with a binding on its <code>Text</code> property would work just as well without the extra baggage.</p> <p>In the inner <code>ItemsControl</code> you can simply bind like this:-</p> <pre><code>&lt;ItemsControl ItemsSource="{Binding RuleEngineParts}" </code></pre> <p>Now you can bind the inner <code>TextBlock</code>s <code>Text</code> property to an appropriate property of what ever objects are found in the <code>RuleEngineParts</code> collection. </p> http://stackoverflow.com/questions/1786031/applying-a-fontfamily-to-all-controls-in-silverlight-4-beta/1789956#1789956 1 Answer by AnthonyWJones for Applying a FontFamily to all Controls in Silverlight 4 Beta AnthonyWJones 2009-11-24T13:06:45Z 2009-11-24T23:17:37Z <p>The control styling being tied to the type system can be a bit misleading. Its actually based on the value of the controls <code>DefaultStyleKey</code> property. In the case of a <code>Button</code> the value is <code>typeof(Button)</code> and for a <code>TextBox</code> it is <code>typeof(Textbox)</code>.</p> <p>A default style will be applied to a control if the <code>TargetType</code> value equals the controls <code>DefaultStyleKey</code> value. There is no examination of whether the <code>Type</code> in the <code>DefaultStyleKey</code> is a derivative of the <code>TargetType</code>.</p> <p>Font related properties are a special case since most controls will inherit the values for Font properties from the containing context. Hence you can effectively acheive the same result by specifying <code>FontFamily</code> and <code>FontWeight</code> on the UserControl element.</p> <p><strong>Edit</strong></p> <p>From a comment by the OP:-</p> <blockquote> <p>I was hoping that I could set it in one place and have every UserControl in the entire application take on that style.</p> </blockquote> <p>The closest you can get to that is to place a keyed style in the app resources and ensure all the usercontrols bind to that style. Of course this still requires some co-operation for each user control but at least the font choices remain in a single place.</p> <p>For example in app.xaml:-</p> <pre><code>&lt;Style x:Key="Common" TargetType="UserControl"&gt; &lt;Setter Property="FontFamily" Value="Arial" /&gt; &lt;Setter Property="FontWeight" Value="Bold" /&gt; &lt;Setter Property="Foreground" Value="Blue" /&gt; </code></pre> <p>Then in each usercontrol:-</p> <pre><code>&lt;UserControl ...namespace stuff here... Style="{StaticResource Common}"&gt; &lt;!-- ... content here ... --&gt; </code></pre> http://stackoverflow.com/questions/1785446/iis7-and-classic-asp-sessions/1790516#1790516 0 Answer by AnthonyWJones for IIS7 and Classic ASP Sessions AnthonyWJones 2009-11-24T14:43:49Z 2009-11-24T14:43:49Z <p>You should talk to your hosting company. It sounds very much like your pool is a being recycled. The host ought to keep a log of these and the reason that they were generated.</p> <p>You should also ask whether you site shares a pool with other sites.</p> http://stackoverflow.com/questions/1476378/can-a-silverlight-3-out-of-browser-application-oob-host-a-html-area/1790388#1790388 1 Answer by AnthonyWJones for Can a Silverlight 3 out of browser application (OOB) host a html area? AnthonyWJones 2009-11-24T14:23:28Z 2009-11-24T14:23:28Z <p>Its an old question but just to be complete the answer is: no it can't.</p> <p>On the otherhand Silverlight 4 can in OOB mode.</p> http://stackoverflow.com/questions/1822499/adding-silverlight-mimetype-using-adsutil Comment by AnthonyWJones on Adding Silverlight MimeType using adsutil AnthonyWJones 2009-11-30T22:53:33Z 2009-11-30T22:53:33Z Can you show the part of the script that you use to create the website? http://stackoverflow.com/questions/1820576/i-need-help-in-query-builder-c-delete-doesnt-work Comment by AnthonyWJones on I need help in query builder c#- delete doesn't work!! AnthonyWJones 2009-11-30T15:48:15Z 2009-11-30T15:48:15Z An example of the code you are trying to use would help, how else were you expecting people to diagnose your problem? http://stackoverflow.com/questions/1819030/sql-linq-many-to-many/1819045#1819045 Comment by AnthonyWJones on SQL Linq Many To Many AnthonyWJones 2009-11-30T11:16:55Z 2009-11-30T11:16:55Z So are you saying in this case LINQ-To-SQL spots that .Roles is a collection of roles an decides somehow that the output needs to be flattened to simple enumeration of Roles, doing the equivalen of a SelectMany in Linq-To-Object extensions? What governs this decision? http://stackoverflow.com/questions/1819030/sql-linq-many-to-many/1819045#1819045 Comment by AnthonyWJones on SQL Linq Many To Many AnthonyWJones 2009-11-30T10:55:29Z 2009-11-30T10:55:29Z I'm a little confused as to how this works. Wouldn't the type of ur.Roles be some collection of Roles? So shouldn't the type of <code>query</code> become some <code>IEnumerable&lt;SomeCollectionOfRoles&gt;</code>? OR does LINQ-TO-SQL do some magic here that is different from Linq-To-Objects? http://stackoverflow.com/questions/1818925/web-garden-properties-on-iis-6-0-running-several-asp-net-web-sites Comment by AnthonyWJones on Web Garden properties on IIS 6.0 running several ASP.NET web sites AnthonyWJones 2009-11-30T10:34:57Z 2009-11-30T10:34:57Z Are you expecting us to make the assumption that the ASP.NET web sites all run in the same Application pool? http://stackoverflow.com/questions/1818882/simple-javascript-animation-for-1-second-to-highlight-text Comment by AnthonyWJones on Simple JavaScript Animation for 1 Second to Highlight Text? AnthonyWJones 2009-11-30T10:03:45Z 2009-11-30T10:03:45Z Define &quot;newer versions&quot;? Describe the bug? Are you already using JQuery? http://stackoverflow.com/questions/1817040/windows-work-flow-dev-using-visual-express-edition/1817110#1817110 Comment by AnthonyWJones on Windows work flow: Dev using visual express edition AnthonyWJones 2009-11-30T09:43:08Z 2009-11-30T09:43:08Z -0.5. That article only discusses how to manipulate the Workflow API in code. It does not discuss loading and working with a Workflow project. -0.5 to discourage the &quot;let me google that for you&quot; sort of answers. http://stackoverflow.com/questions/1814553/cdo-message-the-transport-failed-to-connect-to-the-server Comment by AnthonyWJones on CDO.Message - "The transport failed to connect to the server." AnthonyWJones 2009-11-29T22:08:53Z 2009-11-29T22:08:53Z By implication this code was working at &quot;some point&quot; but now isn't. What changed when it stopped working? http://stackoverflow.com/questions/1814921/how-can-i-know-if-two-rectangles-collide-in-silverlight-3/1814945#1814945 Comment by AnthonyWJones on How can I know if two rectangles collide in Silverlight 3? AnthonyWJones 2009-11-29T08:57:48Z 2009-11-29T08:57:48Z The article is a little OTT for the task, the clue is buried in the code. <code>rect1.Intersect(rect2) != Rect.Empty</code> http://stackoverflow.com/questions/1653527/a-grid-a-viewbox-and-a-canvas/1655014#1655014 Comment by AnthonyWJones on A grid, a Viewbox, and a Canvas AnthonyWJones 2009-11-29T08:40:28Z 2009-11-29T08:40:28Z @JasonRShaver: This is quite and old answer now but I'm sure I tested it. It works fine. http://stackoverflow.com/questions/1813912/does-a-reference-work-with-human-behavior-perception-patterns-exist Comment by AnthonyWJones on Does a reference work with human behavior/perception patterns exist? AnthonyWJones 2009-11-28T22:55:39Z 2009-11-28T22:55:39Z You might do better asking this question on: <a href="http://uxexchange.com/" rel="nofollow">uxexchange.com</a> which specialises in the user experience. As Mr Cooper would point out developers are not the right people to discuss such matters with since our perception of the user experience is heavily skewed. http://stackoverflow.com/questions/1813472/get-notified-of-silverlight-binding-errors Comment by AnthonyWJones on Get Notified of Silverlight Binding Errors? AnthonyWJones 2009-11-28T22:41:22Z 2009-11-28T22:41:22Z Gotta a feeling this one has be been asked before http://stackoverflow.com/questions/1813943/enumerating-through-fields-of-an-index-using-access-interop/1813978#1813978 Comment by AnthonyWJones on Enumerating through fields of an index using Access Interop AnthonyWJones 2009-11-28T22:39:34Z 2009-11-28T22:39:34Z If you examine the type library in VB6 object browser the IndexFields type only appears if you select &quot;Show Hidden&quot;, I suspect for the same reason its not documented. http://stackoverflow.com/questions/1813286/xslt-select-distinct-but-slightly-different-to-other-examples/1813426#1813426 Comment by AnthonyWJones on XSLT: select distinct but slightly different to other examples AnthonyWJones 2009-11-28T22:26:58Z 2009-11-28T22:26:58Z This probably works in the posted simplified case but there are scenerios in which this will fail as a result of the key element matching <b>all</b> elements in the document rather than just the children of /a/b. http://stackoverflow.com/questions/1813444/how-can-i-find-stackoverflow-answers-in-my-search-results-easier Comment by AnthonyWJones on How can I find StackOverflow answers in my search results easier? AnthonyWJones 2009-11-28T19:10:35Z 2009-11-28T19:10:35Z @Jed: is this question about programming?