Bing map control - Still showing data when you zoom in too far

2009-10-22 Thread David Burela
One issue i have with the bing map control, is that when you zoom in past the level where there is data, you get the no image icon everywhere. Is there any way to keep the last real data, but still zoom in. Sure it would be pixelated, but that is preferable over showing nothing David Burela

RE: Bing map control - Still showing data when you zoom in too far

2009-10-22 Thread David Burela
How about an interim fix? Are we able to detect client side if the tiles aren't available past a certain zoom level, so we can lock the zoom? i.e. zoom factor 17 has tiles, they then try to zoom to 18. There aren't any tiles, so we manually set the zoom level back to 17? David Burela Readify

Databinding with Bing maps control

2009-11-02 Thread David Burela
David Burela Readify | Senior Developer Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia M: +61 (0)407 363 860 | E: david.bur...@readify.netmailto:david.bur...@readify.net| W: www.readify.nethttp://www.readify.net

RE: New release of the Silverlight Bing Maps control

2009-11-10 Thread David Burela
although one thing that IS annoying, is that it looks like you now need a bing maps key in order to use the control... David Burela Readify | Senior Developer Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia M: +61 (0)407 363 860 | E: david.bur

RE: Silverlight 4.0 beta

2009-11-22 Thread David Burela
The best place to read how to get started and the new features is here http://timheuer.com/blog/archive/2009/11/18/whats-new-in-silverlight-4-complete-guide-new-features.aspx David Burela Readify | Senior Developer Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia M: +61 (0

RE: $10 million with Bing Maps and the NAVTEQ LBS Challenge

2009-11-23 Thread David Burela
can you actually use the bing maps silverlight control in the competition? I had a look at the competition rules. it said that you had to use the NAVTEQ maps + it had to run on one of their official devices, which were 3 windows mobile phones (and silverlight doesn't run on them) David Burela

RE: Addins in expression blend 3

2010-02-01 Thread David Burela
) fileMenu.Items.AddMenu(BurelamenuItem, BurelamenuItem); } public void Unload() { } } -David Burela From: ozsilverlight-boun...@ozsilverlight.com [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jonas Follesø Sent: Tuesday, 2 February 2010 2:19 AM To: ozSilverlight Subject: Re

RE: Extension model in Blend

2010-02-02 Thread David Burela
Looking forward to your post I put together my notes in case it helps anyone and posted them on my blog along with a sample project http://davidburela.wordpress.com/2010/02/02/guide-to-creating-expression-blend-3-addins/ David Burela From: ozsilverlight-boun...@ozsilverlight.com

RE: Silverlight site.

2010-03-10 Thread David Burela
ick, i'm not a fan of the fold out thing at all Whe whole everything jumps about animation is really offputting for me. maybe if it was slower, or less bouncy it'd be acceptable. But how it is right now, I'm not a fan -David Burela From: ozsilverlight-boun

RE: Any good books on Silverlight 3 4 and on MVVM

2010-03-28 Thread David Burela
There are a few sites that list all of the pure Silverlight sessions, but if you scan down through them you can easily pick out which ones would be the most relevant for you -David Burela From: ozsilverlight-boun...@ozsilverlight.com [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf

RE: How to hack Expression Blend.

2010-04-02 Thread David Burela
Along a similar path, here are my notes on how to create your own addins for expression blend http://davidburela.wordpress.com/2010/02/02/guide-to-creating-expression-blend-3-addins/ -David Burela From: ozsilverlight-boun...@ozsilverlight.com [mailto:ozsilverlight-boun...@ozsilverlight.com

Introducing the Developer Blog Banter

2010-07-29 Thread David Burela
of responses! -David Burela Senior Consultant Hazaa ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

Re: Silverlight RIA Services

2010-08-16 Thread David Burela
.svc localhost:1234://Myapp-RiaProject-Services-MyDomainService.svc -David Burela Hazaa On 15 August 2010 21:29, KO CHANG kochang@gmail.com wrote: Hi Shingi, It all look right to me, however, I am curious about the static declaration on title within the metadata class

Design time data

2010-08-16 Thread David Burela
as a seperate call, not in the constructor. Any tips on how I could still use the repository pattern, but still be able to load the data without anything in the constructor. Doesn't seem possible to me. -David Burela ___ ozsilverlight mailing list

Re: Next Vic.NET/SDDN Meeting: Monday 2nd August, 2010

2010-08-16 Thread David Burela
Cloudcamp lightning talks + unpanel, my talk on Window Phone 7 UI guidelines, and tomorrow's Alt.Net lightning talks to clean up and upload after teched. -David Burela On 17 August 2010 14:21, Stephen Price step...@littlevoices.com wrote: Oh, yes please! No hurry on when you upload

Decoupling from RIA services

2010-09-01 Thread David Burela
to it in my tests the whole thing throws null reference exceptions. Does anyone have a way of creating EntitySets client side so I can have everything decoupled from my domain context? -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com

Re: Decoupling from RIA services

2010-09-03 Thread David Burela
arbitrary paging filtering :-( -David Burela On 3 September 2010 16:18, Steven Nagy steven.n...@readify.net wrote: Hi David, We are using RIA and a standard ViewModel takes an IRepositoryT where T : Entity. When I want to track lists of items I use ObservableCollectionT as well and add

Ria Services : Where clause with multiple items

2010-09-06 Thread David Burela
it this way will end up with a query where the country is Australia AND China. I was hoping I could go var checkedCountries = new []{Australia, China}; query = query.Where(p = checkedCountries.Contains(p.Country) But RIA complains that it does not support the contains operation. Any ideas? -David

Re: Ria Services : Where clause with multiple items

2010-09-06 Thread David Burela
This sounded like the perfect solution. But unfortunately RIA crashes *Nested query expressions are not supported* -David Burela On 6 September 2010 16:41, Peter Gfader pe...@gfader.com wrote: Hi David Check out the PredicateBuilder from J. Albahiri (Nesting Predicates) Source here http

Re: Next Vic.NET/SDDN Meeting: Monday 2nd August, 2010

2010-09-07 Thread David Burela
by tomorrow night -David Burela On 17 August 2010 15:54, Miguel Madero m...@miguelmadero.com wrote: Uploading it raw is easy, but the time consuming bit comes in ... Trying to make Miguel look good, editing the awkward silences and mistakes Thanks for recording it :) Please let me know once it's

Free beta certification exams for Silverlight 4

2010-10-14 Thread David Burela
to take the exams later http://davidburela.wordpress.com/2010/10/15/free-silverlight-azure-beta-exams/ -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

Melbourne SDDN - Thursday 27th April

2011-04-27 Thread David Burela
Hi all. A reminder that tomorrow night is Melbourne SDDN (Silverlight Designer Developer Network). There are 2 talks (upcoming WinPhone7 updates), free pizza, and a chance to talk to other fellow xamlites. details here: http://sddn.org.au/meetings/melbourne/melbourne-april-meeting/ -David

Tip: Silverlight page authorisation

2011-05-15 Thread David Burela
exception and can redirect to a login screen Hope it helps someone -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

Melbourne May SDDN meeting

2011-05-23 Thread David Burela
Just a quick reminder to all that the Melbourne SDDN meeting is on this Thursday http://sddn.org.au/meetings/melbourne/melbourne-may-meeting/ We have two sessions this month. A design session presented by *Silverlight MVP* Alex Knight, and a session on creating pixel shaders! Date: Thursday May

Re: Melbourne May SDDN meeting

2011-05-24 Thread David Burela
Update: The meeting has been postponed until next month. Due to an issue with the booking -David Burela On 24 May 2011 15:09, David Burela david.bur...@gmail.com wrote: Just a quick reminder to all that the Melbourne SDDN meeting is on this Thursday http://sddn.org.au/meetings/melbourne

Silverlight tip: server side RIA services custom validation

2011-06-03 Thread David Burela
notifications, by adding Asynchronous Validation to the UI. Here is the link to Nikhil’s blog post http://www.nikhilk.net/RIA-Services-Validation.aspx -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net

SDDN Melbourne - June 30

2011-06-27 Thread David Burela
with a main focus on media and 3D vision(stereoscopy). He is also creator of Stereosopic calculation software Stereoscopic Master, created in WinForms, now Silverlight. Details: http://sddn-may-2011.eventbrite.com/ -David Burela ___ ozsilverlight

Re: Build

2011-09-21 Thread David Burela
SDDN to XDDN. Which could mean XAML Design Developer Network or with the X meaning anything if you want to include HTML5 (like the XMUG run by thoughtworks). -David Burela On 21 September 2011 19:12, Stephen Price step...@littlevoices.com wrote: Hey all, So most people have probably absorbed

SDDN Melbourne - September. Windows 8

2011-09-22 Thread David Burela
Registrations for this month's SDDN are now open http://sddn-sep-2011.eventbrite.com/ It is focused on Windows 8, WinRT, future of XAML, etc. Hope to see a lot of you there. -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com

Ria services, Data annotations

2012-03-01 Thread David Burela
files. I have logic on the domain service side that looks at the current authenticated user and automatically sets those fields. But I can't submit them because validation keeps failing on those 2 fields. Is there a [NotRequired] property I could put on the domain service metadata file? -David

XDDN Melbourne - March - Windows 8

2012-03-14 Thread David Burela
Hi all. If you are in Melbourne, XDDN is doing a session on Windows 8 next week (Wed 21st March) http://xddn-melbourne-march2012.eventbrite.com/ -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net

Windows 8 Developer camps

2012-03-26 Thread David Burela
of presentations, and a chance to sit in a room and hack away with other passionate developers. Register if you're interested. The Melbourne one is this weekend -David Burela Senior Consultant ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http

Regenerating Ria services metadata

2012-04-04 Thread David Burela
post of people requesting the same feature. Has anyone put out a visual studio extension that lets us just right click *regenerate* the metadata yet? -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001

Issue with RIA services and 302 redirects

2012-04-22 Thread David Burela
Silverlight RIA services calls have NO idea how to handle 302 responses, and so the domain service call just fails. Does anyone know if it is possible to get the client side generat domainService context classes to handle 302 redirects correctly? -David Burela

Re: Creating Office documents

2012-05-22 Thread David Burela
be a way to do it with the open office library and do it server side? But then you still need to find a way to send it to the client, as Greg mentioned -David Burela On 19 May 2012 13:36, Greg Keogh g...@mira.net wrote: Les, one of my colleagues must be one of the few living people on earth who has

Is it time to open source Silverlight?

2013-11-21 Thread David Burela
/22/is-it-time-to-open-source-silverlight/ -David Burela ___ ozsilverlight mailing list ozsilverlight@ozsilverlight.com http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight