RE: Silverlight object not showing - xap downloading but not launching

2011-06-19 Thread Tony Wright
or something. It happens on different machines, but does it also happen with different browsers? Regards, Tony Regards, Tony Wright Principal Consultant and CEO Hazaa Pty Ltd m: +61 (0)424 225 393 | e: mailto:t...@hazaa.com.au t...@hazaa.com.au | w: http://www.hazaa.com.au/ http

RE: HTML5 vs WPF/SL - continued!

2010-09-15 Thread Tony Wright
I guess I'd be asking what the purpose of the site is from project emporia's point of view. If they are trying to attract traffic, they will have a lot of difficulty if they don't solve the problem that search engines refuse to look at content inside Silverlight apps - it's why no-one chooses

RE: Silverlight RIA Services

2010-08-15 Thread Tony Wright
If you don't have the namespaces the same for the two parts of the partial class it can fail also. Have a look in the generated file (Show all files and look for the .g.cs file) and see if the Title class exists in there. T. From: ozsilverlight-boun...@ozsilverlight.com

RE: Silverlight RIA Services

2010-08-12 Thread Tony Wright
Have you done a clean solution lately? Sometimes the generated code gets out of sync with the original, and the only way to get it to regenerate is to clean first. T. From: ozsilverlight-boun...@ozsilverlight.com [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Shingi Mutandwa

RE: Timeouts in Silverlight

2010-07-17 Thread Tony Wright
://twitter.com/peitor On Sat, Jul 17, 2010 at 10:06 AM, Tony Wright ton...@tpg.com.au wrote: Hi all, One thing preventing my Silverlight application being of an acceptable level of quality to release to our customers is Timeouts. Basically, our customers are known to leave the application

Timeouts in Silverlight

2010-07-16 Thread Tony Wright
or perform some action? Regards, Tony Wright Director / Principal Consultant Hazaa Pty Ltd m: +61 424 225 393 | e: mailto:t...@hazaa.com.au t...@hazaa.com.au | w: http://www.hazaa.com.au/ http://www.hazaa.com.au ___ ozsilverlight mailing list ozsilverlight

RE: Prism caching dll's

2010-06-10 Thread Tony Wright
Hi Stephen, Just as a matter of interest, which browser are you using? One of my colleagues was experiencing this but only with Firefox (his IE wasn't working at all for some reason). Regards, Tony From: ozsilverlight-boun...@ozsilverlight.com

RE: Impediments to upgrading / WCF RIA Services

2010-04-28 Thread Tony Wright
Hi Philip, Thanks for the response. Unfortunately I'm working for a big company - we're still on XP. I have been pushing them to upgrade certain strategic infrastructure, but it looks like we're stuck for the moment. Regards, Tony -Original Message- From:

Prism and regions continued

2010-03-25 Thread Tony Wright
Hi all, I am trying to understand the Prism Stocktrader RI application, which I know some of you have had a look at. I am having trouble working out exactly where the Position and Watch List buttons come from. I can see the addition of the Watch List module and the Add To Watch list

RE: Prism, how to switch Regions

2010-03-24 Thread Tony Wright
Hi Stephen, Ok, the problem with Prism is that there is an awful lot of code to sift through to try to get a hint of what the problem is. I think you are correct - the region can only contain a single view at a time. My understanding is that I need to somehow activate the view that I want.

RE: Silverlight ComboBox ItemsSource won't OneWay bind

2010-03-04 Thread Tony Wright
Actually it is an ObservableCollection of ListValue objects. ListValue probably confused you, but it is in fact our own class, not some sort of List of items. Just a theory I have; perhaps I am calling PropertyChanged from the wrong thread? I would have thought that the PropertyChanged event

RE: Silverlight ComboBox ItemsSource won't OneWay bind

2010-03-04 Thread Tony Wright
think you need to raise property change notifications. If you're raising the CollectionChangsd event on the worker thread, you might have a lot of swallowed exceptions. On Fri, Mar 5, 2010 at 9:49 AM, Tony Wright ton...@tpg.com.au wrote: Ok, I have now had a chance to check the code to ensure

String enumerations and resource files in c#

2010-02-13 Thread Tony Wright
Hi all, I have blogged on how to enumerate strings via resource files on my blog at: http://tonesdotnetblog.wordpress.com/2010/02/14/string-enumerations-and-reso urce-files-in-c/ This is as a result of a discussion at Silverlight Code Camp. Hope this helps someone! Regards, Tony

RE: RIA Domain Services and required dependencies

2010-01-27 Thread Tony Wright
I have my own button on the form that calls dataForm.ValidateItem(). It works for Required and Range validators, but doesn't seem to fire the Custom validators. ValidateItem() basically returns true and I end up with an exception that shouldn't happen when I SubmitChanges(). Is this a known issue?

RE: Accessing page resources from user controls

2010-01-22 Thread Tony Wright
Hmmm. That works if I have the resource specified as a UserControl.Resource within the control, but not if the resource is on the owning page - it comes back null. The user control requires access to various ViewModel classes, as there are combo boxes to populate, so I am reluctant to bind the