AnthonyWJones

28,844
reputation
1761 views

Registered User

name AnthonyWJones
member for 1 year
seen 2 days ago
website
location Birmingham, England
age 43

General interests: C#, Javascript, Agile, Interaction Design

Current interests: Silverlight+Toolkit, ASP.NET-MVC, Workflow.

Would like to know more about: Python, DLR, WCF, EF, WPF, XNA, SQL 2008, ... the list is endless.

9h
accepted How to fetch attributes of image in silverlight?
2d
comment Getting empty recordset for a particular column during code run
@Edelcom: Read this document on how to use Markdown in SO answers:- stackoverflow.com/editing-help
2d
revised Getting empty recordset for a particular column during code run
deleted 170 characters in body
Dec
18
accepted Can Windows Workflow Runtime run 2 workflows at the same time
Dec
17
accepted At which point in the life of an xmlHttpRequest object is serialised XML parsed into a DOM?
Dec
17
comment Silverlight TextBlock Visibility property inital value before binding is applied
In what way is this change a "breaking change"? Its just an improvement in SL4 I don't see how this change breaks any existing code?
Dec
16
comment System.Threading.ThreadAbortException WITHOUT Response.Redirect call
You should still be able to get at the ScriptTimeout via HttpContext.Current.Server
Dec
16
accepted does silverlight 3 support GUID in xaml?
Dec
16
awarded  Enlightened
Dec
16
awarded  Nice Answer
Dec
16
comment System.Threading.ThreadAbortException WITHOUT Response.Redirect call
You would put it in the ASPX/Ashx that kicks off a long running task. You would not want to have many of these right?
Dec
16
comment System.Threading.ThreadAbortException WITHOUT Response.Redirect call
Member for 2 Months, 7 questions asked time to consider accepting some the answers provided to you, that tick box you see next to the answers to your questions, click one of them.
Dec
16
answered System.Threading.ThreadAbortException WITHOUT Response.Redirect call
Dec
16
revised SQL Server Foreign Key Problem
edited tags
Dec
16
revised what is the best way to find some items in an array based on the item property value?
So is more professional place to be than you may have used to in the past
Dec
16
revised Silverlight CustomControl Root Element
added 6 characters in body; added 2 characters in body
Dec
16
answered Is there a way to get the Session object from a static context?
Dec
16
revised Eyeball rotation
edited tags
Dec
16
comment Installing Silverlight plugin on offline PC - is it possible?
+1 despite the fact that I don't generally upvote the "Let me google that for you" type answers. Since its right there at the top of the list the OP could've saved themselves the trouble of asking the question at all.
Dec
15
revised Silverlight Canvas: How does it work?
added 6 characters in body
Dec
15
comment How to Programmatically Modify a DataTemplate?
I think what I'd like to see as the ability to replace an ItemsControl ItemContainerGenerator with custom generator which we can't at the moment, I'll have to look up SL4 see if it allows that.
Dec
15
revised Silverlight Button Style gets stuck on fullscreen
added 12 characters in body
Dec
15
accepted How to Programmatically Modify a DataTemplate?
Dec
15
comment Traversing all nodes in an XML file with VBScript
It would help massively if you posted the desired output so we don't have to imagine what it is your are expecting and we can largely ignore your code and show how you should've done it.
Dec
15
comment Traversing all nodes in an XML file with VBScript
You really need to learn XPath
Dec
15
revised Traversing all nodes in an XML file with VBScript
The "code" button is your friend
Dec
15
comment Pranks involving writing a program
Lets say we come up with a good sneaky way to do that sort of thing you want to discuss? What prevents some malicious individual using that knowledge to bring about some harm?
Dec
15
revised Display another View after clicking on a button
deleted 6 characters in body
Dec
15
comment Identifying Silverlight at server side
And needs to be translated to object tag anyway since this ASP.NET control has be dropped since SL3
Dec
15
accepted Determine which version of Silverlight an assembly is built under
Dec
15
answered Determine which version of Silverlight an assembly is built under
Dec
15
comment Determine which version of Silverlight an assembly is built under
How many SL2 projects do you think will be around these days is my point.
Dec
15
answered Parsing responseXML via AJAX POST
Dec
15
revised Volatility of query results in asp
edited tags
Dec
15
comment Volatility of query results in asp
@Chris: You should write this up as an answer.
Dec
15
comment Determine which version of Silverlight an assembly is built under
Why not just build to Silverlight 3?
Dec
15
comment Pitfalls of (Mis)Using C# Iterators to Implement Coroutines
+1 RX is the direction to take this sort of thing in Silverlight. I shouldn't worry too much about the "Preview" status of Rx, if that were really a concern perhaps Silverlight as whole isn't for you.
Dec
15
answered How to Programmatically Modify a DataTemplate?
Dec
15
accepted How to Centre Silverlight Elements relative to each other?
Dec
15
answered does silverlight 3 support GUID in xaml?
Dec
15
accepted CheckedItems property for custom CheckBoxList control in Silverlight
Dec
15
accepted Silverlight: How to style the validation tooltip?
Dec
14
comment Silverlight MultiScaleImage/SubImage Viewpoint arrangement logic question
"Virtually index" what does that mean? "Arrange them as they actually existed in the earth" do you mean they will layer on to top of each other?
Dec
14
comment CheckedItems property for custom CheckBoxList control in Silverlight
Yes you can't assign to the SelectedItems property either, so you need to bridge the SelectedItems property of the ListBox with a new property you are exposing which allows the consumer to set an IList for the control to manipulate. Once the initial SelectedItems is set on assignment to your property you can keep the two lists in sync via the SelectionChanged event.
Dec
14
accepted Silverlight Accordion control: all collapsed when loaded
Dec
14
answered Silverlight Accordion control: all collapsed when loaded
Dec
14
comment CheckedItems property for custom CheckBoxList control in Silverlight
@Mark: Still requires a separate source list for every selected list.
Dec
14
answered CheckedItems property for custom CheckBoxList control in Silverlight
Dec
14
accepted Silverlight grid with auto width and height
Dec
14
comment CheckedItems property for custom CheckBoxList control in Silverlight
This assumes that the Items from the collection have some "checked" property that indicates that they have been selected. Whilst its not clear whether that would work fro the OPs actual task, it doesn't work for the problem presented in the question. If you have a simple list of say Cities why should a City object care whether is "Checked" or not. That not it problem, checked by who, for what reason? What if there are more than one control that may select from Cities but each want to describe their own distinct subset.