Re: Tracing deployed app

2012-04-21 Thread Jordan Knight
You'd have to begin by assuming some kind of server interaction is causing the 
problem - start with fiddler perhaps...

Cheers,

Jordan. 

On 21/04/2012, at 5:51 PM, Greg Keogh g...@mira.net wrote:

 Folks, I have one of those stinkers where my SL4 app woks nicely on my dev 
 machine, but when it’s deployed to the live server it behaves incorrectly. So 
 I’m wondering what the easiest way is to log/trace what’s happening inside 
 the app on the live machine. In a previous app I had laced the code with my 
 own logging which I put into a rolling array, and I had a button in the UI to 
 show the lines in a list box. It works, but it’s completely hand-written.
  
 I could add similar manual logging to my new app, but before I do that rather 
 tedious work I was wondering if there are better ways of tracing/logging 
 what’s happening inside my SL4 app (inside IE8) on a live machine. It would 
 be nice if I could add logging calls to my code, but let something else do 
 the work of catching and displaying the data (like the Trace infrastructure).
  
 Perhaps there are tricks and techniques I’m not aware of.
  
 Greg
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Enumerating children of a type

2012-04-19 Thread Jordan Knight
It all feels a bit backward to me as to why a parent object would want
knowledge of things in it... seems to break encapsulation or some other
software rule and does't feel right.

If I find myself in this situation, I try to build custom controls at the
lower level that have explicit knowledge of the required elements using
Template parts etc. then use databinding to pass around stuff.

JK


On Fri, Apr 20, 2012 at 11:17 AM, David Burela david.bur...@gmail.comwrote:

 The first reply answered exactly what you require.

 But since we are on the topic, here is another linq extension that may be
 useful.
 If you have your own custom hierarchy of classes you
 (parent/child/child/child) you can specify how the tree is linked to each
 object and do depth  breadth first searches on it


 http://www.claassen.net/geek/blog/2009/06/searching-tree-of-objects-with-linq.html


 -David Burela


 On 20 April 2012 10:30, carl.scarl...@bankwest.com.au wrote:

 Yep; same here.

 ** **

 Carl.

 ** **

 *From:* ozsilverlig ht-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] *On Behalf Of *Stephen Price 
 step...@perthprojects.com
 *Sent:* Thursday, 19 April 2012 6:25 PM
 *To:* ozSilverlight ozsilverlight@ozsilverlight.com
 *Subject:* Re: Enumerating children of a type

 ** **

 Quite common to use an extension method similar to the one shown on this
 thread... 

 ** **

 http://forums.silverlight.net/t/106379.aspx 

 ** **

 We use something very close to it on the project where I am. 

 ** **

 On Thu, Apr 19, 2012 at 4:26 PM, Greg Keogh g...@mira.net wrote:

 I find I’m often enumerating down the visual tree looking for child
 controls of a certain type. Is there an elegant and reliable way of coding
 this that people prefer? -- Greg


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 ** **


 __
 This email has been scanned by the Symantec Email Security.cloud ser vice.
 For more information please visit http://www.symanteccloud.com
 __

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 ___


 This email has been scanned by the Bankwest Email Security System.
 ___
 



 ___
 Unencrypted electronic mail is not secure and may not be authentic.
 If you have any doubts as to the contents please telephone to confirm.

 This electronic transmission including any attachments is intended only
 for those to whom it is addressed. It may contain copyright material or
 information that is confidential, privileged or exempt from disclosure by
 law.
 Any claim to privilege is not waived or lost by reason of mistaken
 transmission
 of this information. If you are not the intended recipient you must not
 distribute or copy this transmission and should please notify the sender.
 Your costs for doing this will be reimbursed by the sender.

 We do not accept liability in connection with computer virus, data
 corruption,
 delay, interruption, unauthorised access or unauthorised amendment.

 ___
 __
 This email has been scanned by the Symantec Email Security.cloud service.
 For more information please visit http://www.symanteccloud.com
 __

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight



 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Validation in TabControl

2012-04-04 Thread Jordan Knight
Of course, the problem still stands, that if you have hidden tabs, how do
you direct the user back to them to fix the errors :)

On Wed, Apr 4, 2012 at 7:50 PM, Stephen Price step...@perthprojects.comwrote:

 Not considered that, but like the sound. We are using fluent validation
 (the framework). I dare say changing how we validate would be massive
 change though

 Thanks will investigate whats involved. May have to revisit validation
 later have other stuff to focus on now
 On Apr 4, 2012 5:12 PM, Jordan Knight jak...@gmail.com wrote:

 Have you considered idataerrorinfo and validate in your vm instead?

 Cheers,

 Jordan.

 On 04/04/2012, at 6:55 PM, Stephen Price step...@perthprojects.com
 wrote:

  Hey all,
 
  There's an issue with validating Tabs that are not visible with
 Silverlight. Essentially the tab is not visible, thus not in the visual
 tree and so validation can't be done. It's documented if you search for it
 and there are a few hacks around (one is to switch to each tab, validate
 and move on.). I thought about this as an option but am not sure how to
 disabled the screen from flickering while it does this. Nasty hack, so
 don't like.
 
  We currently iterate through each RadTab control recursively (nested
 TabControls) and add each control to a collection, then validate each one.
 If any are found we just change the colour of the tab. It seems to work for
 most cases, but I've been tracking down one page that doesn't work right.
 
  The problem with this one is there is a control on the page, which is
 where all the work is being done. When the page works (if you just
 navigated to it) then the page returns 2700+ controls to validate. If you
 click save again, while the tab is not visible, then you only get 100.
 Everything inside the control, including the control itself is no longer
 around. So it seems the control is behaving the same way that TabItems
 behave in that if its not visible then you can't validate it.
 
  I guess what I'm asking, has anyone hit this before and perhaps come up
 with a clever solution? (Clever solutions will be considered even if you
 haven't hit it before and are just plain clever.)
  Hell, I'll take dumb solutions at this point!
 
  thanks,
  Stephen
  ___
  ozsilverlight mailing list
  ozsilverlight@ozsilverlight.com
  http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Ria services, Data annotations

2012-03-05 Thread Jordan Knight
'Tis the kind of problem that pragmatism solves without a second's thought
:)

On Mon, Mar 5, 2012 at 10:03 PM, Craig Richards 
craiganthonyricha...@gmail.com wrote:

 Sounds good to me, sometimes we fight and resist too much. 

 Sent from my iPhone

 On 05/03/2012, at 13:27, David Burela david.bur...@gmail.com wrote:

 As much as I was trying to avoid it, I ended up just setting dummy values
 on the client side, which the domain service overwrites.

 On 2 March 2012 12:37, Stephen Price step...@perthprojects.com wrote:

 Try  [DisplayFormat(ConvertEmptyStringToNull = false)]

 This post isn't exactly your scenario but it could be related to the
 strings you have (nvarchar) and they might be defaulting to null?

 http://stackoverflow.com/questions/3129080/server-side-validation-of-a-required-string-property-in-mvc2-entity-framework-4


 worth a try anyway :)

 the other way is to just set it on the client and then ignore what the
 client provides.


 On Fri, Mar 2, 2012 at 9:18 AM, David Burela david.bur...@gmail.com
 wrote:
 
  I've got a weird problem.
 
  There are tables in a database with these additional columns
 CreatedById, ModifiedById. (They are nvarchar, not null)
  There is then an entity framework model for this (again, strings, not
 null).
  RIA services is used to share the entities with the client.
 
  The problem is in Silverlight side. If I create a new Product class,
 display it in a Dataform to allow the user to edit price, etc. I can't
 submit product to the domain service because validation fails CreatedById
 can not be null. It makes no sense to set those values on the client side
 as they could spoof those 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 Burela
 
  ___
  ozsilverlight mailing list
  ozsilverlight@ozsilverlight.com
  http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Skills

2012-02-29 Thread Jordan Knight
Leave designing up to designers :p

Sent from my iPad

On 01/03/2012, at 3:45 PM, Jasim Schluter write_2_ja...@hotmail.com wrote:

 All agree that today’s Silverlight Developer is tomorrows XAML developer?
  
 Are there any skills that tomorrows’ XAML developer will need that
 Silverlight developers are missing?
  
 Like Metro design skills?
 Inside out knowledge of the Windows 8 API / Win 8 Phone API?
 Asyn
 Coding
 chro
 Skills?
 nous
  
 Ideas?
  
 (and is the answer to this question the answer to the question, “WTF do we do 
 with all these Silverlight Usergroups?”.)
  
 From: ozsilverlight-boun...@ozsilverlight.com 
 [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Miguel Madero
 Sent: Monday, 20 February 2012 6:28 AM
 To: ozSilverlight
 Subject: Re: Skills
  
 And please not everyone say Javascipt!
 By that I assume that's already on the top of your list and you're looking 
 for something in addition to it. Many of the JS frameworks are definitely. 
 NodeJS and CoffeeScript are also interesting from a dev POV. As a UX HTML5, 
 CSS3, SAAS. Personally I got hook recently with Lean Startup and product 
 development. Also, some people might hate it, but I think there're lots of 
 opportunities for iPhone development, a good place to start would be Hello 
 iPhone
  
 Hope this helps. 
 Miguel A. Madero Reyes
 www.miguelmadero.com (blog)
 m...@miguelmadero.com
 
 
 On Fri, Feb 17, 2012 at 5:10 AM, Jasim Schluter write_2_ja...@hotmail.com 
 wrote:
  
 Hi All,
  
 I’ve been playing with Silverlight since Silverlight 2 beta,
  
 and have just finished a 1 year 7 month contract doing UX work in Silverlight.
  
 Now that I have a chance to lift my head up and ask:
  
 “What skills this group are they adding to their toolbox at the moment?”
  
 And please not everyone say Javascipt!
  
 Cheers,
  
 Jasim Schluter
  
 Jasim Schluter | Blender3DLive | www.Blender3DLive.com | SilverLighter| mail 
 | site
 6/166 Pacific Highway | North Sydney NSW 2060  | Australia | +61 400511241 m
  
  
  
  
  
 
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 
  
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Skills

2012-02-29 Thread Jordan Knight
Oh dear :)

On Thu, Mar 1, 2012 at 5:36 PM, Scott Barnes scott.bar...@gmail.com wrote:

 So true.. I am just a misunderstood genius and humble too! ;)

 Sent from my iPhone

 On 01/03/2012, at 4:09 PM, Nick Josevski nickjosev...@gmail.com wrote:

 Barnes freak like skills come at a price look how bitter he is ;)


 On 01/03/2012, at 5:07 PM, Shane Morris (Automatic Studio) 
 sh...@automaticstudio.com.au wrote:

 Freak

 Shane Morris  |  Automatic Studio  |  sh...@automaticstudio.com.au  |  +61
 438 818 888

 On 01/03/2012, at 4:31 PM, Scott Barnes scott.bar...@gmail.com wrote:

   What if you can do both though?

  w00t.


 ---
 Regards,
 Scott Barnes
 http://www.riagenic.com


 On Thu, Mar 1, 2012 at 3:13 PM, Shane Morris (Automatic Studio) 
 sh...@automaticstudio.com.au wrote:

  Damn straight!

  You don't see me coding do you?

  ...

  Well, much.

  Shane

 Shane Morris  |  Automatic Studio  |  sh...@automaticstudio.com.au  |  +61
 438 818 888

 On 01/03/2012, at 3:49 PM, Jordan Knight jak...@gmail.com wrote:

   Leave designing up to designers :p

 Sent from my iPad

 On 01/03/2012, at 3:45 PM, Jasim Schluter write_2_ja...@hotmail.com
 wrote:

All agree that today’s Silverlight Developer is tomorrows XAML
 developer?

 ** **

 Are there any skills that tomorrows’ XAML developer will need that

 Silverlight developers are missing?

 ** **

 Like Metro design skills?

 Inside out knowledge of the Windows 8 API / Win 8 Phone API?

 Asyn

 Coding

 chro

 Skills?

 nous

 ** **

 Ideas?

 ** **

 (and is the answer to this question the answer to the question, “WTF do
 we do with all these Silverlight Usergroups?”.)

 ** **

 *From:* ozsilverlight-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] *On Behalf Of *Miguel Madero
 *Sent:* Monday, 20 February 2012 6:28 AM
 *To:* ozSilverlight
 *Subject:* Re: Skills

 ** **

 And please not everyone say Javascipt!

 By that I assume that's already on the top of your list and you're
 looking for something in addition to it. Many of the JS frameworks
 are definitely. NodeJS and CoffeeScript are also interesting from a dev
 POV. As a UX HTML5, CSS3, SAAS. Personally I got hook recently with Lean
 Startup and product development. Also, some people might hate it, but I
 think there're lots of opportunities for iPhone development, a good place
 to start would be Hello 
 iPhonehttp://docs.xamarin.com/ios/getting_started/hello_iphone
 

 ** **

 Hope this helps. 

 Miguel A. Madero Reyes
 www.miguelmadero.com (blog)
 m...@miguelmadero.com

 

 On Fri, Feb 17, 2012 at 5:10 AM, Jasim Schluter 
 write_2_ja...@hotmail.com wrote:

  

 Hi All,

  

 I’ve been playing with Silverlight since Silverlight 2 beta,

  

 and have just finished a 1 year 7 month contract doing UX work in
 Silverlight.

  

 Now that I have a chance to lift my head up and ask:

  

 “What skills this group are they adding to their toolbox at the moment?”*
 ***

  

 And please not everyone say Javascipt!

  

 Cheers,

  

 Jasim Schluter

  

 *Jasim Schluter* | Blender3DLive | www.Blender3DLive.com |
 SilverLighter| mail cont...@blender3dlive.com | 
 sitehttp://www.blender3dlive.com/
 6/166 Pacific Highway | North Sydney NSW 2060  | Australia | +61
 400511241 m

  

  

  

  

  


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 ** **

  ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

   ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman

Re: Skills

2012-02-16 Thread Jordan Knight
Ahaha c++! What would we mere web peeps be wantin with the devil?

Cheers,

Jordan. 

On 17/02/2012, at 4:25 PM, Scott Barnes scott.bar...@gmail.com wrote:

 C++ and Java.
 
 Java for Android alternative mobile device market(s) and C++ covers pretty 
 much all bases
 
 ---
 Regards,
 Scott Barnes
 http://www.riagenic.com
 
 
 On Fri, Feb 17, 2012 at 3:12 PM, Nick Josevski nickjosev...@gmail.com wrote:
 You know, like nunchuku skills, bow hunting skills, computer hacking skills.. 
 
 
 +1 for ASP.NET MVC skills
 
 
 On Fri, Feb 17, 2012 at 3:49 PM, Troy Schuetrumpf t...@taskretail.com.au 
 wrote:
 I have a few you can check out that I am currently working on learning
 
 ASP MVC3 + Razor (and JS ;) lol)
 
 IOC – Ninject
 
 NoSQL – MongoDB
 
 Logging  - nlog
 
  
 
 There are other options for each but these are the ones that I have found 
 most intriguing.
 
  
 
  
 
  
 
  
 
  
 
 Troy Schuetrumpf
 Software Developer 
 image001.jpg
 A: Suite 16, 90 Mona Vale Road Mona Vale NSW 2103 | T: +61 2 9997 3500 | F: 
 +61 2 9997 3511 | W: http://www.taskretail.com.au
 
 image002.png
 
 Notice of confidentiality This message is confidential and intended for the 
 recipient or recipients named above.
 It may also be privileged solicitor-client communication. If you are not the 
 named recipient or a person charged with delivering this
 
 message to the named recipient, you have received this message in error. 
 Immediately delete this message from your computer.
 
  
 
  
 
 From: ozsilverlight-boun...@ozsilverlight.com 
 [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jasim Schluter
 Sent: Friday, 17 February 2012 3:11 PM
 To: ozsilverlight@ozsilverlight.com
 Subject: Skills
 
  
 
  
 
 Hi All,
 
  
 
 I’ve been playing with Silverlight since Silverlight 2 beta,
 
  
 
 and have just finished a 1 year 7 month contract doing UX work in Silverlight.
 
  
 
 Now that I have a chance to lift my head up and ask:
 
  
 
 “What skills this group are they adding to their toolbox at the moment?”
 
  
 
 And please not everyone say Javascipt!
 
  
 
 Cheers,
 
  
 
 Jasim Schluter
 
  
 
 Jasim Schluter | Blender3DLive | www.Blender3DLive.com | SilverLighter| mail 
 | site
 6/166 Pacific Highway | North Sydney NSW 2060  | Australia | +61 400511241 m
 
  
 
  
 
  
 
  
 
  
 
 
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 
 
 
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 
 
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: DataGrid row button click

2011-12-06 Thread Jordan Knight
You should be able to grab the data context from sender without iterating the 
visual tree at all. Data contexts flow down automatically. 



Cheers,

Jordan. 

On 06/12/2011, at 11:03 PM, Greg Keogh g...@mira.net wrote:

 Folks, I think I’ve outsmarted myself. I have a DataGrid bound with a 
 template column containing a Button and it’s all looking quite acceptable. 
 Now I’m a bit flummoxed, as when one of the buttons is clicked I have to find 
 out which object in the data source is behind the row containing the button.
  
 Unlike the WinForms grid, I have no RowIndex or similar property to help me, 
 all I have are two properties on the Click event: sender and 
 e.OriginalSource, which seem to be the same.
  
 I’ll probably have to walk backwards up the control tree somehow to find the 
 row and the item it’s bound to, but I don’t know how yet. Has anyone done 
 this and got clues? I’ll keep web searching in the meantime.
  
 Greg
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: DataGridCheckBoxColumn (fixed?!)

2011-12-06 Thread Jordan Knight
Create a user control and place it in the cell. 


Have a dependency property on it to publish the select color back to where you 
need...

Cheers,

Jordan. 

On 06/12/2011, at 7:07 PM, Greg Keogh g...@mira.net wrote:

 Now that’s solved, I have an even more ambitious thing to try.
  
 I want to turn a DataGrid cell into a colour picker. I have a template column 
 containing a Grid with a TextBlock inside. The grid background is bound to 
 the colour (via a converter) and I can see a cell value like # with a 
 red background. I now have to:
  
 1. Display the ARGB value as a known colour (if it corresponds to one).
 2. Make the mouse turn to a hand when over the colour cells.
 3. Open some sort of colour picker when the colour cells are clicked and get 
 that value back to the cell and bound property (luckily we’re using the C1 
 kit and I think they have a colour picker).
  
 Fun eh?! I estimate 6 hours work. In WinForms it would take 15 minutes, but I 
 shouldn’t get sentimental.
  
 Greg
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: attempting to access a service in a cross-domain way

2011-10-29 Thread Jordan Knight
Is your sl app in a web project? If not it prolly won't work. Run it in oob 
mode might help...

Cheers,

Jordan. 

On 30/10/2011, at 11:55 AM, Greg Keogh g...@mira.net wrote:

 Folks, I’ve just created a hello world WCF web service with basicHttpBinding 
 which I know is working correctly from URL 
 http://localhost/PhotoService/Service1.svc.
  
 I created a simple Silverlight 4 app with a single button to call the service 
 to sanity check it’s working. It dies with this:
  
 An error occurred while trying to make a request to URI 
 'http://localhost/PhotoService'. This could be due to attempting to access a 
 service in a cross-domain way without a proper cross-domain policy in place, 
 or a policy that is unsuitable for SOAP services.
  
 Web searches hint that I need a clientaccesspolicy.xml file and they argue 
 about where it’s supposed to be placed (I’m still not sure where). However, I 
 have other apps like this one I’ve just created and none of them need a 
 policy file. I’ve never created one before. What’s going on this time?!
  
 Is there some trick I’ve forgotten? Any ideas anyone?
  
 Thanks
 Greg
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Out of browser update when site secured with Windows Authentication

2011-05-10 Thread Jordan Knight
You might like to investigate allowing anon access to the location of the
XAP, and/or only securing the location that the services live...

On Wed, May 11, 2011 at 10:40 AM, Mikala Gardineros
mgardine...@gmail.comwrote:

 Hello,

 I have an intranet site (iis 7.5) that hosts a Silverlight oob
 application.  The site also hosts a wcf service that is used by the oob
 application.

 I use Windows Authentication, primarily to lock down the wcf service, eg
 authentication mode=Windows / in the web.config.

 The user lifecycle is like this :

 a.  First time they use their browser to navigate to the host web page.
 They are prompted for Windows credentials.

 b.  User clicks a button that lets them install it oob.

 c.  Lets say later the user launch the oob app, I pop up a login window and
 use the supplied windows credentials for subsequent wcf calls until they
 shut down the app.

 This works nicely.

 However, when they launch the app I do the standard
 App.Current.CheckAndDownloadUpdateAsync() to check for updates.  The problem
 is that it doesn't detect updates.

 The reason it doesn't detect the update is because of a 401 -
 Unauthorized: Access is denied due to invalid credentials on the xap file I
 can see in Fiddler.

 This makes perfect sense, I haven't supplied any credentials so why would
 IIS allow the user to access the new xap file.

 So, my question is, how can I supply credentials to
 CheckAndDownloadUpdateAsync()  ?  Or can someone suggest an alternative?

 Thank you in advance.

 Mikala


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Metro Icons in xaml

2010-11-09 Thread Jordan Knight
There are some png's installed with the SDK

C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v7.0\Icons


On Wed, Nov 10, 2010 at 4:52 PM, .net noobie dotnetnoo...@gmail.com wrote:

 Thank you very much :)


 On Wed, Nov 10, 2010 at 3:49 PM, Chris Walsh ch...@walshie.me wrote:

  Here… http://go.microsoft.com/fwlink/?LinkId=196225





 *From:* ozsilverlight-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] *On Behalf Of *.net noobie
 *Sent:* Wednesday, 10 November 2010 4:48 PM
 *To:* ozSilverlight
 *Subject:* Re: Metro Icons in xaml



 I cannot find them, do you please have the link?

 On Wed, Nov 10, 2010 at 3:45 PM, Chris Walsh ch...@walshie.me wrote:

 Not sure about xaml but the PSD with the MetroIcons is available on the
 download site @ Microsoft.com



 *From:* ozsilverlight-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] *On Behalf Of *.net noobie
 *Sent:* Wednesday, 10 November 2010 4:45 PM
 *To:* ozsilverlight@ozsilverlight.com


 *Subject:* Metro Icons in xaml



 I remember finding somewhere at one of the MS websites a download that
 contained all the Metro Icons in xaml and other formats as well



 I cannot remember where this was, can anyone please send the link if you
 know where it is located

 thank you :)




 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight



 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight



 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

2010-09-14 Thread Jordan Knight
... to bump that chain of thought - plugins are easer to install / get
installed than browsers. And, plugins don't wreck corporate apps built
around SOE (i.e. upgrade from IE6).

I like your points John - ubiquity is the key to the reach argument.

On Wed, Sep 15, 2010 at 12:34 PM, John OBrien j...@soulsolutions.com.auwrote:

  The sad part about HTML5 is all the awesome innovative stuff we've seen
 out of MSFT powered by Silverlight will now have to been slowly ported over
 HTML5 and the loser is new innovation.
 Great that it will have more reach but from an innovation point of view it
 sucks. Example Photosynth, sure a pure HTML5 version would be great but it
 will cost all the dev resources to do it and we don't get anything new. It
 is a real pity that the right decision is to spend your time on boring HTML5
 rather then doing new work that has never been done before in Silverlight.

 From a business point of view how do you allocate your resources for a
 RIA?

 1) HTML4 / AJAX - greatest reach for some time, limited functionality
 2) HTML5 - potential for greater reach, build RIAs, limited tooling
 3) SL - suffer from the plugin install issue, richer experience, good
 tools.

 My guess is conservative managers are going to choose 1+2, if not just 1
 and wait till 90%+ of devices have HTML5 caps.

 --
 CC: ozsilverlight@ozsilverlight.com
 From: scott.bar...@gmail.com

 Subject: Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic
 Date: Wed, 15 Sep 2010 12:05:52 +1000
 To: ozsilverlight@ozsilverlight.com


 Whe u say they who are u referring to? Developer division or ie / windows
 team? And who has right of way in terms of budgets and launch timelines?
 Msft has loads of money but if you have ever sat in a review of the business
 etc u will note that being held fiscally accountable is very important.

 200+ devs are on sl today how many do u think work on IE? Or the variety of
 tooling and also how do u justify the double ups between sl and html5 espec
 when the later hasn't got an audience really defined yet? Where do u put
 your $100 spends etc? Who foots the bill on marketing it all? Windows?
 Office? Vstudio? Expression? Do u know expression teams don't report to the
 same org tree as silverlight teams do?

 It's great to say do both but sit down crunch the numbers and factor in
 divisional politics and welcome to he internal reality of Microsoft

 --
 Sent from my mini iPad nano
 (excuse my spilling and grammar as I have giant man like fingers and this
 device as small keys)

 On 15/09/2010, at 11:50 AM, Perry Stathopoulos psta...@gmail.com
 wrote:

First, everyone should also read Mike Taulty’s post:

 http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/09/10/iphone-4-is-dead.aspx

 Another thing that I didn’t see too much in all this hoopla is talking
 about the obvious that Silverlight is reaching maturity (not end of life,
 but normal development cycles vs. double time). MS arrived late to the party
 in online video streaming. IE is nothing but a punching bag online, so they
 need to step it up if they want to be taken seriously as an online leader.
 They surely don’t want to be late again with HTML5. Yes it makes sense to
 invest heavily early in this new shiny object, lest they arrive late again.


  *From:* Jordan Knight jak...@gmail.com
 *Sent:* Tuesday, September 14, 2010 9:17 PM
 *To:* ozSilverlight ozsilverlight@ozsilverlight.com
 *Subject:* Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

 I'd also like to raise some points RE HTML5 and WPF/SL etc.

 Back in the 1890's the head of the US patent office declared he was going
 to close the office because he thought that there was nothing left to
 invent... rather short sighted given hindsight...

 My point is that HTML5 will bring to the masses through standardisation the
 features that consumers have come to demand thanks to agile plugins like SL
 and Flash. To quote the SL team blog post that flamed the debate - SL/Flash
 trailblaze and HTML5 will then pave the road. These features are already out
 there and pervasive (demanded) - so why not standardise and give them the
 ultimate reach they deserve! Bravo - it's a really good idea, and consumers
 win. The stuff that was around years ago will now be available through
 standards.

 But there is new stuff now... that stuff has been done - tech moves on.

 Where consumers *also* win is that SL and Flash are all about ideas and
 tech that doesn't/didn't exist yet + getting it to market fast. It's a
 playground for great ideas. 3D video. Surround sound, adaptive smooth
 streaming (for the SL = video zealots). Multitouch, multi screen, multi
 bloody everything. Rapid development (through Des/Dev workflows) + awesome
 tooling.

 Consumers like apps too remember. They would much rather read their EPG in
 an app than have a link to a web page on their desktop.

 And what about other ideas that don't really exist yet

Re: Transforms - rotating a page

2010-06-27 Thread Jordan Knight
Hey Tony,

You need to make sure the containing element is higher than that rotated
element... or it will clip it.

On Mon, Jun 28, 2010 at 9:47 AM, ton...@tpg.com.au wrote:

 Hi all,

 I am currently attempting to rotate a form which is rendering to the screen
 in Landscape to a
 printed page which is Portrait. While I don't think it's that important,
 the dimensions of the form are
 Width=1112, Height=793. The print surface (I am just printing to an XPS
 file) are Width=793,
 Height=1112. I matched the dimensions for simplicity.

 Basically, I add a transform group, call a rotate transform (angle 90
 degrees), translate transform
 to shift the result back onto the page and then after setting the
 transform onto the form, I set it
 as the print element.

 The result of this is that it does successfully rotate the form -
 everything that I have putting on the
 page is correct and showing up on the page EXCEPT that the page itself is
 clipped at the bottom.
 That is, the page displays as portrait, the content is showing as a
 landcape rotated, but the page
 clips at the bottom so that we only see part of that landscape page. It is
 as though the output
 hasn't been adjusted for the new dimensions, only showing as much as the
 height of the original
 form. I have attached a (very small) example image to show what I mean.

 Below is the code I am using. Is there anything that I am doing wrong here?

 Regards,
 Tony


 LandscapePrintTemplateControl landscapeTemplate = new
 LandscapePrintTemplateControl();
 landscapeTemplate.Height = e.PrintableArea.Width;
 landscapeTemplate.Width = e.PrintableArea.Height;
 landscapeTemplate.Title = headingTitle;
 //landscapeTemplate.AddChildren(printImageSource);

 TransformGroup transformGroup = new TransformGroup();
 RotateTransform rotateTransform = new RotateTransform();
 rotateTransform.Angle = 90;
 transformGroup.Children.Add(rotateTransform);
 TranslateTransform moveTransform = new TranslateTransform();
 moveTransform.X = e.PrintableArea.Width;
 transformGroup.Children.Add(moveTransform);

 landscapeTemplate.RenderTransform = transformGroup;

 e.PageVisual = landscapeTemplate;

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Printing in Silverlight / Writing a bitmap that's not visible

2010-06-23 Thread Jordan Knight
May try calling it on a dispatcher callback...

On Thu, Jun 24, 2010 at 11:27 AM, ton...@tpg.com.au wrote:

 Hi all,

 We have moved to Silverlight 4 due to the printing capability. I have been
 working on the best way
 to enable printing in my application. I have settled on writing page
 components to Bitmaps, then
 slotting those bitmaps into a page template control (printTemplate) and
 printing that. It's all been
 working fine except that now I have hit a problem.

 I have a tab control. The tab control has a number of tabs. When I click
 the Print button that I
 have added to the page, it works it's way through all the tabs and prints a
 report that contains the
 content. Now, it works fine if I have clicked on all the tabs before-hand,
 however if I do not click
 the tabs beforehand, then the content of those tabs will not get generated
 within the report.

 However, if I set the element directly into e.PageVisual, then the element
 will display.

 I believe this is happening because the bitmap does not render from a tab
 that has not been made
 visible prior to clicking Print.

 I have attached some code below and it is still a work in progress. Most of
 my printing involves
 Landscape orientation, and if I set it to Portrait, or set e.PageLayout =
 elementToPrint, then the
 element will clip, which is undesireable.

 How can I get an element to render inside a bitmap without the element
 needing to be visible first?

 Regards,
 Tony

 private void PrintPage(FrameworkElement elementToPrint, PrintPageEventArgs
 e, string
 headingTitle, string footerTitle, PageOrientation orientation =
 PageOrientation.Portrait)
 {
PrintTemplateControl printTemplate = new PrintTemplateControl();
printTemplate.SetHeaderAndFooterText(headingTitle, footerTitle);

double printableHeight = e.PrintableArea.Height -
 printTemplate.HeightOffset;
int contentWidth = Convert.ToInt32(elementToPrint.ActualWidth);
int contentHeight = Convert.ToInt32(elementToPrint.ActualHeight);
WriteableBitmap bitmap;
if (orientation == PageOrientation.Portrait)
{
bitmap = new WriteableBitmap(contentWidth, contentHeight);
bitmap.Render(elementToPrint,new TranslateTransform());
}
else
{
bitmap = new WriteableBitmap(contentHeight, contentWidth);
TransformGroup transformGroup = new TransformGroup();
RotateTransform rotateTransform = new RotateTransform();
rotateTransform.Angle = 90;
transformGroup.Children.Add(rotateTransform);
TranslateTransform moveTransform = new TranslateTransform();
moveTransform.X = contentHeight;
transformGroup.Children.Add(moveTransform);
ScaleTransform scaleTransform = new ScaleTransform();
double ratioOfImageToPrintArea = 1;
if (elementToPrint.ActualWidth  printableHeight)
ratioOfImageToPrintArea = printableHeight /
 elementToPrint.ActualWidth;
scaleTransform.ScaleX = ratioOfImageToPrintArea;
scaleTransform.ScaleY = ratioOfImageToPrintArea;
transformGroup.Children.Add(scaleTransform);
bitmap.Render(elementToPrint, transformGroup);
}
bitmap.Invalidate();

Image printImageSource = new Image();
printImageSource.Source = bitmap;
printImageSource.Width = bitmap.PixelWidth;
printImageSource.Height = bitmap.PixelHeight;

printTemplate.AddChildren(printImageSource);

e.PageVisual = printTemplate;
 }


 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: JavaScript possibilities

2010-06-20 Thread Jordan Knight
Hey,

I believe that you van only do clipboard stuff in i.e. (it has  
clipboard stuff On the global object from memory) Sl4 full trust will  
be fine at any time (It should also be able to do office automation  
etc too)

Cheers,

Jordan

On 21/06/2010, at 9:07 AM, Greg Keogh g...@mira.net wrote:

 Folks, my Silverlight 3 app is a lightweight version of a gigantic  
 windows app written in C++, and the authors of that app want my SL3  
 app to simulate the “export” facility of its big brother, which  
 sends data to the Clipboard, to a new browser window or to Office ap 
 ps via automation.



 I explained to them SL3 is mostly deaf, dumb and blind on the client  
 machine, and as far as I know the only way it can talk to the client  
 is by invoking JavaScript methods. I see that SL4 can work with the  
 Clipboard, but it will be several weeks or more before I migrate up  
 to VS2010, Framework 4 and SL4.



 I’m already calling JavaScript methods in the browser for trivial pu 
 rposes, so I can pass huge strings of XML into JavaScript methods as 
  well. I’m not up-to-date with JavaScript and I was wondering if it  
 has any power act as a kind of trusted intermediary to allow the SL3 
  app to send XML to the Clipboard, browsers or automated Office apps 
 . Has anyone done this sort of thing?



 In the meantime I’ll keep web searching for articles on this matter.



 Greg

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: JavaScript possibilities

2010-06-20 Thread Jordan Knight
Yeah tis IE only.

Flash can/could do it... I think it's been removed in later versions of
browsers? I dunno - I just know it doesn't work very well cept in IE :)

Cheers,

JK

On Mon, Jun 21, 2010 at 10:57 AM, Greg Keogh g...@mira.net wrote:

  Jordan, searches for “JavaScript Clipboard” produce a lot of results that
 use code like the following:



 textarea id=holdtext style=display:none/textarea



 script type=text/javascript

 function toClipboard(message) {

 holdtext.innerText = message;

 var copied = holdtext.createTextRange();

 copied.execCommand(Copy);

 }

 /script



 In my IE8 dev machine this ugly code actually works, but I seriously doubt
 it will be browser neutral. Anyway, it will be suitable for the upcoming
 demo. One of the C++ guys reckons he’s crash hot with JavaScript, so I’ll
 tell him this works and I’ll leave it to him to do magic with the script and
 the XML I’ve placed on the Clipboard.



 I’ll let you know if I find anything more generally useful on the subject.



 Greg

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Printing in Silverlight

2010-06-18 Thread Jordan Knight
Hey Tony,

Maybe consider having a view especially for printing... use the same
ViewModel or what ever you have and load up the new view before printing
from that...

In my experience, it's always better to have Print views (like media type in
css etc)...

JK

On Fri, Jun 18, 2010 at 2:48 PM, ton...@tpg.com.au wrote:

 Hi all,

 We have finally made the move to Silverlight 4.  It was a hard slog, mainly
 due to third party
 control library issues, and we still have some styling issues, however
 we've made it.

 One of the key reasons that we made the move to Silverlight 4 was for its
 print functionality.

 So anyway, we have been setting up a few pages for printing. But we are
 hitting a stumbling block
 or two.

 Most screens are landscape, whilst most printers are set up for portrait
 printing. I have a report
 showing on a screen that needs to be printed landscape. When I set the
 PageVisual object to my
 page, and call print, it wants to print out the page using portrait
 orientation. I have not found a way
 to get it to change/default to landscape. Is there a way to do this?

 Regards,
 Tony
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Out of Browser issue

2010-05-30 Thread Jordan Knight
Wrong startup projects seems to be the issue of the week :)

On Sat, May 29, 2010 at 11:55 PM, .net noobie dotnetnoo...@gmail.comwrote:

 after a nap (brain reset)

 i noticed that the issue is that the startup application in now set to the
 Silverlight app, not the web app
 not a big issue when your eyes are working correctly and linked to your
 brain :)

 On Sat, May 29, 2010 at 7:58 PM, .net noobie dotnetnoo...@gmail.comwrote:

 I have a SL4 application that I have set to be an OOB app

 now I want to continue making it, but i am getting a error when i un-tick
 the Out of Browser option to make it just run in the browser again

 that app starts in the browser, it ref's a few other progects, so i assume
 it is failing in one these other projects,
 i really do not know where or what I should be looking for

 any tips please?

 Thanks
 .net noobie



 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Invalid or malformed application

2010-05-10 Thread Jordan Knight
Enable Silverlight debugging in your web app, at least then you can see
which control is causing it (will break in visual studio)

On Tue, May 4, 2010 at 3:37 PM, Greg Keogh g...@mira.net wrote:

  I’ve just spent 2 hours creating a control and pulling out common styles
 from multiple controls by putting them in an external merged dictionary XAML
 file. It’s the first time I’ve used a merged dictionary, and it’s damn good
 way of keeping your resources tidy.  However, sometime during the last hour
 I’ve broken something and my app won’t load or start. I get the following:



 Microsoft JScript runtime error: Unhandled Error in Silverlight 2
 Application

 Code: 2103

 Category: InitializeError

 Message: Invalid or malformed application: Check manifest



 I am dead in the water, unable to find the cause. While I keep stuffing
 around hopelessly, I thought I might as well ask if there is some trick
 anyone knows to help locate the problem.



 I uselessly tried backing out some of my changes, but that could take twice
 as long as actually writing the code in the first place. I tried removing
 the merged dictionary but it does nothing. This is progress?!



 Greg

 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Silverlight 4

2010-04-15 Thread Jordan Knight
Yuppers

On Fri, Apr 16, 2010 at 11:46 AM, Winston Pang winstonp...@gmail.comwrote:

 So wait, the tool's aren't final, but the runtime is?


 On Fri, Apr 16, 2010 at 11:31 AM, Nick Randolph n...@builttoroam.comwrote:

 Note that this is RC2 for the Visual Studio tools. It's actually RTW for
 Silverlight 4 itself!

 Nick Randolph | Built To Roam | Microsoft MVP - Device Application
 Development | +61 412 413 425
 The information contained in this email is confidential. If you are not
 the intended recipient, you may not disclose or use the information in this
 email in any way. Built To Roam does not guarantee the integrity of any
 emails or attached files. The views or opinions expressed are the author's
 own and may not reflect the views or opinions of Built To Roam.


 -Original Message-
 From: ozsilverlight-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Vinay Tripathi
 Sent: Friday, 16 April 2010 10:03 AM
 To: ozSilverlight
 Subject: Silverlight 4

 Just checked, Silverlight 4 RC2 is now available for download.


 Vinay

 -Original Message-
 From: ozsilverlight-boun...@ozsilverlight.com [mailto:
 ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jordan Knight
 Sent: Thursday, 15 April 2010 2:03 PM
 To: ozSilverlight
 Subject: RE: Move Silverlight Element around in HTML

 Hey Ross,

 Thanks for the suggestion. Unfortunately the app is actually a CMS with a
 big framework - so chaning it isn't an option.

 Cheers,

 Jordan.

 
 From: ozsilverlight-boun...@ozsilverlight.com [
 ozsilverlight-boun...@ozsilverlight.com] On Behalf Of ross [
 r...@perenni.com.au]
 Sent: Thursday, 15 April 2010 2:00 PM
 To: ozSilverlight
 Subject: Re: Move Silverlight Element around in HTML

 If the SL app is inside an updatepanel I don't think you will ever win.

 You could try pagemethods instead of updatepanels perhaps, assuming
 the legacy permits.

 I just tried it out for fun.  I have two divs, one with a SL app and
 one with a html button.

 On clicking the button I hid the SL div, called the page method, and
 on the page method callback showed the SL div and updated a label in
 the html div with the time from the server.  The SL app definitely
 didn't reload, as I had a timestamp showing in the xaml side of things
 that didn't change.


 On Thu, Apr 15, 2010 at 1:06 PM, Jordan Knight
 jordan.kni...@readify.net wrote:
  Having it outside was an option i've considered... the problem is that
 the
  UI is quite complex with fold out bits etc... so having it float would
  probably make it look a bit funny.
 
  JAK
  
  From: ozsilverlight-boun...@ozsilverlight.com
  [ozsilverlight-boun...@ozsilverlight.com] On Behalf Of John OBrien
  [j...@soulsolutions.com.au]
  Sent: Thursday, 15 April 2010 12:00 PM
  To: 'ozSilverlight'
  Subject: RE: Move Silverlight Element around in HTML
 
  We talking updatepanels Jordan? You need to make sure you're SL controls
 are
  not within the updatepanel or they are redrawn.
 
  The trick we used for the Bing Maps ASP.NET control was to have the
 update
  panel just contain some divs used for communication while the large map
  control sat just outside. This was all encapsulated within the control,
 the
  developer didn't add their own updatepanel.
 
 
 
  John.
 
 
 
  From: ozsilverlight-boun...@ozsilverlight.com
  [mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jordan
 Knight
  Sent: Thursday, 15 April 2010 11:36 AM
  To: ozSilverlight
  Subject: Move Silverlight Element around in HTML
 
 
 
  Hey guys,
 
 
 
  I have a situation where an existing ASP.NET AJAX based app has a
 series of
  SL controls in them. Basically they don't want the SL elements to reload
  when the ajax controls refresh.
 
 
 
  I've had a muck around with moving the element in JS, and it can be
 moved no
  problem - but it re-initialises the control each time... pretty sure its
 the
  browser doing it.
 
 
 
  Does anyone have any ideas on how I might move an SL control without it
  re-initialising?
 
 
 
  Cheers!
 
  Jordan.
 
  ___
  ozsilverlight mailing list
  ozsilverlight@ozsilverlight.com
  http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 
 
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
 ___
 ozsilverlight mailing list
 ozsilverlight@ozsilverlight.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

 National Australia Bank Ltd - ABN 12 004 044 937
 This email may contain confidential information. If you are not the
 intended recipient, please immediately notify us at postmas...@nab.com.auor 
 by replying to the sender, and then destroy all copies of this email.
 Except where this email indicates otherwise, views expressed

RE: Silverlight 4

2010-04-15 Thread Jordan Knight
+ It'll be done when it's done. It's good that we can use it before it's done :)

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Nick Randolph 
[n...@builttoroam.com]
Sent: Friday, 16 April 2010 12:02 PM
To: ozSilverlight
Subject: RE: Silverlight 4

Right, so you’d prefer to wait for longer to get Silverlight 4 until all the 
designer bits are final, rather than get Silverlight 4 today h I know 
what I’d prefer.

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang
Sent: Friday, 16 April 2010 11:55 AM
To: ozSilverlight
Subject: Re: Silverlight 4

Pooo :( I just wish they would just release it all at once, bit sick of all 
these beta and RC bits on my machine, I want to just install all the RTM bits 
at once.
On Fri, Apr 16, 2010 at 11:50 AM, Jordan Knight 
jak...@gmail.commailto:jak...@gmail.com wrote:
Yuppers

On Fri, Apr 16, 2010 at 11:46 AM, Winston Pang 
winstonp...@gmail.commailto:winstonp...@gmail.com wrote:
So wait, the tool's aren't final, but the runtime is?

On Fri, Apr 16, 2010 at 11:31 AM, Nick Randolph 
n...@builttoroam.commailto:n...@builttoroam.com wrote:
Note that this is RC2 for the Visual Studio tools. It's actually RTW for 
Silverlight 4 itself!

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.


-Original Message-
From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Vinay Tripathi
Sent: Friday, 16 April 2010 10:03 AM
To: ozSilverlight
Subject: Silverlight 4

Just checked, Silverlight 4 RC2 is now available for download.


Vinay

-Original Message-
From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Jordan Knight
Sent: Thursday, 15 April 2010 2:03 PM
To: ozSilverlight
Subject: RE: Move Silverlight Element around in HTML

Hey Ross,

Thanks for the suggestion. Unfortunately the app is actually a CMS with a big 
framework - so chaning it isn't an option.

Cheers,

Jordan.


From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of ross [r...@perenni.com.aumailto:r...@perenni.com.au]
Sent: Thursday, 15 April 2010 2:00 PM
To: ozSilverlight
Subject: Re: Move Silverlight Element around in HTML

If the SL app is inside an updatepanel I don't think you will ever win.

You could try pagemethods instead of updatepanels perhaps, assuming
the legacy permits.

I just tried it out for fun.  I have two divs, one with a SL app and
one with a html button.

On clicking the button I hid the SL div, called the page method, and
on the page method callback showed the SL div and updated a label in
the html div with the time from the server.  The SL app definitely
didn't reload, as I had a timestamp showing in the xaml side of things
that didn't change.


On Thu, Apr 15, 2010 at 1:06 PM, Jordan Knight
jordan.kni...@readify.netmailto:jordan.kni...@readify.net wrote:
 Having it outside was an option i've considered... the problem is that the
 UI is quite complex with fold out bits etc... so having it float would
 probably make it look a bit funny.

 JAK
 
 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 [ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
  On Behalf Of John OBrien
 [j...@soulsolutions.com.aumailto:j...@soulsolutions.com.au]
 Sent: Thursday, 15 April 2010 12:00 PM
 To: 'ozSilverlight'
 Subject: RE: Move Silverlight Element around in HTML

 We talking updatepanels Jordan? You need to make sure you're SL controls are
 not within the updatepanel or they are redrawn.

 The trick we

RE: Silverlight 4

2010-04-15 Thread Jordan Knight

A gotcha worth pointing out when going to VS2010 and developing for Azure with 
Silverlight and WCF RIA Services: The 2010 version of WCF RIA Services can't 
run on 3.5... So I've been re-isntalling WRS as I switch projects.

Nothing major - its a 2 mins install...

Anyone have an tips on having them both on the machine at once?

Probably should just build a VS08 VPC :)

Jordan.

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of John OBrien 
[j...@soulsolutions.com.au]
Sent: Friday, 16 April 2010 1:02 PM
To: 'ozSilverlight'
Subject: RE: Silverlight 4

Great post from Tim explaining it all: 
http://timheuer.com/blog/archive/2010/04/15/download-silverlight-4-released.aspx

Also he confirmed that VS2010 can multi target SL3 and SL4 so that is what I’ll 
be playing with on the weekend. Looks like RIA services for SL3 is the only 
problematic piece of the puzzle.

John.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jordan Knight
Sent: Friday, 16 April 2010 12:07 PM
To: ozSilverlight
Subject: RE: Silverlight 4

+ It'll be done when it's done. It's good that we can use it before it's done :)

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Nick Randolph 
[n...@builttoroam.com]
Sent: Friday, 16 April 2010 12:02 PM
To: ozSilverlight
Subject: RE: Silverlight 4
Right, so you’d prefer to wait for longer to get Silverlight 4 until all the 
designer bits are final, rather than get Silverlight 4 today h I know 
what I’d prefer.

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang
Sent: Friday, 16 April 2010 11:55 AM
To: ozSilverlight
Subject: Re: Silverlight 4

Pooo :( I just wish they would just release it all at once, bit sick of all 
these beta and RC bits on my machine, I want to just install all the RTM bits 
at once.
On Fri, Apr 16, 2010 at 11:50 AM, Jordan Knight 
jak...@gmail.commailto:jak...@gmail.com wrote:
Yuppers

On Fri, Apr 16, 2010 at 11:46 AM, Winston Pang 
winstonp...@gmail.commailto:winstonp...@gmail.com wrote:
So wait, the tool's aren't final, but the runtime is?

On Fri, Apr 16, 2010 at 11:31 AM, Nick Randolph 
n...@builttoroam.commailto:n...@builttoroam.com wrote:
Note that this is RC2 for the Visual Studio tools. It's actually RTW for 
Silverlight 4 itself!

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.


-Original Message-
From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Vinay Tripathi
Sent: Friday, 16 April 2010 10:03 AM
To: ozSilverlight
Subject: Silverlight 4

Just checked, Silverlight 4 RC2 is now available for download.


Vinay

-Original Message-
From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Jordan Knight
Sent: Thursday, 15 April 2010 2:03 PM
To: ozSilverlight
Subject: RE: Move Silverlight Element around in HTML

Hey Ross,

Thanks for the suggestion. Unfortunately the app is actually a CMS with a big 
framework - so chaning it isn't an option.

Cheers,

Jordan.


From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of ross [r...@perenni.com.aumailto:r...@perenni.com.au]
Sent: Thursday, 15 April 2010 2:00 PM
To: ozSilverlight
Subject: Re: Move Silverlight Element around in HTML

If the SL app is inside an updatepanel I don't think you will ever win.

You could try pagemethods instead of updatepanels perhaps, assuming
the legacy permits.

I just tried it out for fun.  I have two divs, one with a SL app and
one with a html

RE: VHDs in Windows 7 (was RE: Silverlight 4)

2010-04-15 Thread Jordan Knight
hehe I love those moments

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of 
carl.scarl...@bankwest.com.au [carl.scarl...@bankwest.com.au]
Sent: Friday, 16 April 2010 3:32 PM
To: ozsilverlight@ozsilverlight.com
Subject: VHDs in Windows 7 (was RE: Silverlight 4)

OMG.  I had no idea you could do native boots on VHDs in Windows 7.  I still 
can’t pick my jaw up from the floor.

Scott: Are there any tools that let you do this easily setup VHDs for boot or 
is it all done through the command line (Diskpart etc)?

Carl.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Scott Barnes 
scott.bar...@readify.net
Sent: Friday, 16 April 2010 12:29 PM
To: ozSilverlight ozsilverlight@ozsilverlight.com
Subject: RE: Silverlight 4

Jordan: I ended up created 3x VHD's that i do native boots on.

VHD1 - VS2008 (SL3/EXPR3)
VHD2 - VS2010 (RC)
VHD3 - VS2010 RTW + SL4 RTW + EXPR 4 RC

then i'll create a VHD4
VHD4 - VS2010 RTW + SL4 RTW + EXP4 RTW

I use a base VHD with everything but Microsoft tools installed (CS4, Office etc)

Go Win7! :)


From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jordan Knight 
[jordan.kni...@readify.net]
Sent: Friday, April 16, 2010 1:06 PM
To: ozSilverlight
Subject: RE: Silverlight 4

A gotcha worth pointing out when going to VS2010 and developing for Azure with 
Silverlight and WCF RIA Services: The 2010 version of WCF RIA Services can't 
run on 3.5... So I've been re-isntalling WRS as I switch projects.

Nothing major - its a 2 mins install...

Anyone have an tips on having them both on the machine at once?

Probably should just build a VS08 VPC :)

Jordan.

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of John OBrien 
[j...@soulsolutions.com.au]
Sent: Friday, 16 April 2010 1:02 PM
To: 'ozSilverlight'
Subject: RE: Silverlight 4
Great post from Tim explaining it all: 
http://timheuer.com/blog/archive/2010/04/15/download-silverlight-4-released.aspx

Also he confirmed that VS2010 can multi target SL3 and SL4 so that is what I’ll 
be playing with on the weekend. Looks like RIA services for SL3 is the only 
problematic piece of the puzzle.

John.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Jordan Knight
Sent: Friday, 16 April 2010 12:07 PM
To: ozSilverlight
Subject: RE: Silverlight 4

+ It'll be done when it's done. It's good that we can use it before it's done :)

From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Nick Randolph 
[n...@builttoroam.com]
Sent: Friday, 16 April 2010 12:02 PM
To: ozSilverlight
Subject: RE: Silverlight 4
Right, so you’d prefer to wait for longer to get Silverlight 4 until all the 
designer bits are final, rather than get Silverlight 4 today h I know 
what I’d prefer.

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang
Sent: Friday, 16 April 2010 11:55 AM
To: ozSilverlight
Subject: Re: Silverlight 4

Pooo :( I just wish they would just release it all at once, bit sick of all 
these beta and RC bits on my machine, I want to just install all the RTM bits 
at once.
On Fri, Apr 16, 2010 at 11:50 AM, Jordan Knight 
jak...@gmail.commailto:jak...@gmail.com wrote:
Yuppers

On Fri, Apr 16, 2010 at 11:46 AM, Winston Pang 
winstonp...@gmail.commailto:winstonp...@gmail.com wrote:
So wait, the tool's aren't final, but the runtime is?

On Fri, Apr 16, 2010 at 11:31 AM, Nick Randolph 
n...@builttoroam.commailto:n...@builttoroam.com wrote:
Note that this is RC2 for the Visual Studio tools. It's actually RTW for 
Silverlight 4 itself!

Nick Randolph | Built To Roam | Microsoft MVP - Device Application Development 
| +61 412 413 425
The information contained in this email is confidential. If you are not the 
intended recipient, you may not disclose or use the information in this email 
in any way. Built To Roam does not guarantee the integrity of any emails or 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Built To Roam.


-Original Message-
From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun

RE: Closing childwindow

2010-04-14 Thread Jordan Knight
Maybe have a play with UpdateSourceTrigger and BindingExpression...

http://msdn.microsoft.com/en-us/library/system.windows.data.binding.updatesourcetrigger(VS.95).aspx



From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Stephen Price
Sent: Wednesday, 14 April 2010 3:57 PM
To: ozSilverlight
Subject: Closing childwindow

Hey all,

I've hit what seems to be a race condition, I've got a login usercontrol which 
uses a ChildWindow. when the user presses enter on the passwordbox I check if 
the key == key.enter and if the password is not blank I set the 
this.DialogResult = true; which seems to be closing the ChildWindow before the 
databinding has updated the underlaying property. Net result is if user presses 
enter then the password is null even if they have typed in a password.

I've tried both keydown and keyup with same outcome. Any suggestions on how I 
can get it to close the window after the databinding has done its thing? 
Alternatively perhaps invoke the click event on the OK button . Any ideas?

cheers,
Stephen


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


RE: Sydney SDDN Meeting Reminder

2010-04-05 Thread Jordan Knight
I'll be there!

Looking at the FB responses there are going to be a few interesting peeps there 
too!
Jordan Knight
Readify | Senior Consultant
Lead Trainer - Rich Interactive Media
Technical Specialist (Silverlight)
Microsoft MVP - Silverlight
Suite 408 LifeLabs Building | 198 Harbour Esplanade | Docklands | VIC 3008 | 
Australia
M: +61 403 532 404 | E: 
jordan.kni...@readify.netmailto:jordan.kni...@readify.net | W: 
http://www.readify.net | B: http://blog.webjak.net



From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Chris Anderson
Sent: Tuesday, 6 April 2010 2:41 AM
To: ozSilverlight
Subject: Sydney SDDN Meeting Reminder

Just a reminder that the Sydney SDDN meeting is tonight at 6pm (for 6:30).  If 
you haven't done so, please register on the Facebook event here: 
http://www.facebook.com/event.php?eid=105897519447617index=1 so we can order 
enough pizza.  I'll give a bit of a rundown of the outcomes from MIX10, and 
Jose will talk about developing for Windows Phone 7 (or the Zune Phone as I 
prefer to call it).

Oh, and bring your external HD / USB keys / laptops / (trying to think of 
something suitably silly for this entry, but got nothing at this time of 
night), as thanks to Justin King who consumed great slabs of bandwidth to 
download all the MIX10 videos (16GB worth apparently, so come prepared) will 
have them all available for download off an external HD.  If Justin doesn't 
make it then we have a backup of Ewen Wallace (aka @CADbloke) who has already 
grabbed them from Justin and will also bring them on an external HD.  There is 
a ton of great content there, and is is your best chance to get them if you 
haven't got them already and want to reserve your bandwidth for other 
potentially less reputable purposes.

And hey, if none of that got your attention, there's free pizza!  See you then!

Chris Anderson
Resident Sydney SDDN Rambler
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


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

2010-03-29 Thread Jordan Knight
It's by Josh Smith :P

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Darren Neimke
Sent: Monday, 29 March 2010 3:26 PM
To: ozsilverlight@ozsilverlight.com
Subject: RE: Any good books on Silverlight 3  4 and on MVVM

You've read that Jordan?  What are some of the things that make this a 
worthwhile resource?


Kind Regards,

Darren Neimke
darren.nei...@live.commailto:darren.nei...@live.com
http://2010wave.blogspot.com



From: jordan.kni...@readify.net
To: ozsilverlight@ozsilverlight.com
Date: Sun, 28 Mar 2010 21:18:07 -0700
Subject: RE: Any good books on Silverlight 3  4 and on MVVM
Check out http://joshsmithonwpf.wordpress.com/advanced-mvvm/

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Vinay Tripathi
Sent: Monday, 29 March 2010 2:34 PM
To: ozsilverlight@ozsilverlight.com
Subject: Any good books on Silverlight 3  4 and on MVVM

Hi ,

I was just wondering if you guys got any suggestions on some good books on 
Silverlight 3  4 and on MVVM?


Regards,

Vinay Tripathi


National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended 
recipient, please immediately notify us at 
postmas...@nab.com.aumailto:postmas...@nab.com.au or by replying to the 
sender, and then destroy all copies of this email. Except where this email 
indicates otherwise, views expressed in this email are those of the sender and 
not of National Australia Bank Ltd. Advice in this email does not take account 
of your objectives, financial situation, or needs. It is important for you to 
consider these matters and, if the e-mail refers to a product(s), you should 
read the relevant Product Disclosure Statement(s)/other disclosure document(s) 
before making any decisions. If you do not want email marketing from us in 
future, forward this email with unsubscribe in the subject line to 
unsubscripti...@nab.com.aumailto:unsubscripti...@nab.com.au in order to stop 
marketing emails from this sender. National Australia Bank Ltd does not 
represent that this email is free of errors, viruses or interference.


Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox. 
Learn 
More.http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


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

2010-03-28 Thread Jordan Knight
Check out http://joshsmithonwpf.wordpress.com/advanced-mvvm/

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Vinay Tripathi
Sent: Monday, 29 March 2010 2:34 PM
To: ozsilverlight@ozsilverlight.com
Subject: Any good books on Silverlight 3  4 and on MVVM

Hi ,

I was just wondering if you guys got any suggestions on some good books on 
Silverlight 3  4 and on MVVM?


Regards,

Vinay Tripathi


National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended 
recipient, please immediately notify us at 
postmas...@nab.com.aumailto:postmas...@nab.com.au or by replying to the 
sender, and then destroy all copies of this email. Except where this email 
indicates otherwise, views expressed in this email are those of the sender and 
not of National Australia Bank Ltd. Advice in this email does not take account 
of your objectives, financial situation, or needs. It is important for you to 
consider these matters and, if the e-mail refers to a product(s), you should 
read the relevant Product Disclosure Statement(s)/other disclosure document(s) 
before making any decisions. If you do not want email marketing from us in 
future, forward this email with unsubscribe in the subject line to 
unsubscripti...@nab.com.aumailto:unsubscripti...@nab.com.au in order to stop 
marketing emails from this sender. National Australia Bank Ltd does not 
represent that this email is free of errors, viruses or interference.
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


RE: Silverlight site.

2010-03-11 Thread Jordan Knight
Design aside, it's using one of my libraries - eventr From 
http://eventr.codeplex.com :)

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Scott Barnes
Sent: Thursday, 11 March 2010 2:55 PM
To: ozSilverlight
Subject: Silverlight site.

http://www.microsoft.com/silverlight
has been  updated.

Thoughts? (i.e. i had nothing to do with it so unload good/bad)

___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


RE: xaml icons

2010-03-08 Thread Jordan Knight
Agree,

Go for the resource that you can get easily - Icon libs rock anyways... how 
many hours can you waste looking through awesome icons when you should be 
writing code... I've crapped hundreds of hours away :)

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Shane Morris 
(Automatic Studio)
Sent: Tuesday, 9 March 2010 3:23 PM
To: 'ozSilverlight'
Subject: RE: xaml icons

While being able to scale vector icons might seem like an advantage, in my 
experience if you plan to use icons at various sizes it is hard to produce one 
icon that has the right level of detail to look right at various sizes. 
Therefore, whether vector or bitmap, chances are you'll be designing different 
versions of the same icon for different sizes.

Shane

Shane Morris  |  Automatic Studiohttp://www.automaticstudio.com.au/  |  
sh...@automaticstudio.com.aumailto:sh...@automaticstudio.com.au  |  +61 438 
818 888



From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Joseph Cooney
Sent: Tuesday, 9 March 2010 2:37 PM
To: ozSilverlight
Subject: Re: xaml icons

openclipart.orghttp://openclipart.org has some good images in SVG format 
which you can convert to xaml. The images are a bit hit and miss, some are 
great, some not so much.

Joseph
On Tue, Mar 9, 2010 at 10:55 AM, Vishwanath Humpy 
vhu...@rediffmail.commailto:vhu...@rediffmail.com wrote:
Does anyone know of any good free or paid resource for xaml icons?  I can do 
them myself but I'm a bit slow and don't have a graphics designer by my side.

I know there are plenty of converters, as well documented here, but you do need 
something to convert :

http://blogs.msdn.com/mswanson/pages/WPFToolsAndControls.aspx

I also had hopes for this visio - xaml but it doesn't work on my machine :
http://visioautomation.codeplex.comhttp://visioautomation.codeplex.com/

Or I am on the wrong track, perhaps icons are best left as pngs and I should 
just invest in an icon library such as http://www.iconshock.com/ and forget 
about it ?


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlighthttp://sigads.rediff.com/RealMedia/ads/click_nx.ads/www.rediffmail.com/signatureline@middle?
 
http://sigads.rediff.com/RealMedia/ads/click_nx.ads/www.rediffmail.com/signatureline@middle?

___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


RE: Merry Xmas from Readify.

2009-12-02 Thread Jordan Knight
That's just substandard dude. Geez.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Scott Barnes
Sent: Thursday, 3 December 2009 11:29 AM
To: ozSilverlight
Subject: RE: Merry Xmas from Readify.

That was me being lazy and not doing the math of 139px / % :) and instead 
cheated with 100pixels wide progress bar :)


From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang
Sent: Wednesday, December 02, 2009 4:24 PM
To: ozSilverlight
Subject: Re: Merry Xmas from Readify.

Looking good. Great work!

One little thing I noticed though, the progress bar at start doesn't seem to 
correlate exactly to the percentile value, it seems a bit off... like when it 
reach the 90's mark, there was a large chunk left and it just jumped.

Anyways, good stuff.
On Thu, Dec 3, 2009 at 11:21 AM, Scott Barnes 
scott.bar...@readify.netmailto:scott.bar...@readify.net wrote:
http://readify.net/merry-christmas/

Small little Silverlight piece that we've done :)


___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight

___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


RE: Our new silverlight site

2009-12-01 Thread Jordan Knight
The Eventr open source project that was shown at Remix09 in Sydney has that 
functionality (all using templates - so you can get it working very quickly)

http://eventr.codeplex.com/

Cheers,

Jordan.

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Miguel Madero
Sent: Wednesday, 2 December 2009 1:10 AM
To: ozSilverlight
Subject: Re: Our new silverlight site

I just noticed that you integrated 3 videos with the deep zoom. It looks cool.
On Wed, Dec 2, 2009 at 12:59 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Wow that's nice :)



On Tue, Dec 1, 2009 at 7:30 PM, rjemp...@gmail.commailto:rjemp...@gmail.com 
wrote:
The company history page is another interesting use of deep zoom : 
http://www.michaelhill.com.au/#CompanyHistory

Click the pause button to skip the video


On 01/12/2009 10:45am, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
 Thanks for sharing.








 What do you mean by Application lifetime objects / client side services?


 It's nice the way you use deepzoom. Altough I was thinking I could zoom in 
 out of the products and then I noticed that it was mainly to preload. 
 That's nice.


 It would be good to know a bit more on some topics, for example security, how 
 you used deep zoom, SEO and analytics.











 I agree with most of the comments around navigation, slot transitions and 
 movies. It's some valuable feedback.






 Miguel.








 On Tue, Dec 1, 2009 at 11:00 AM, Tatham Oddie 
 tat...@oddie.com.aumailto:tat...@oddie.com.au wrote:








 Sounds like some really cool technical work you've done!



 From an interaction perspective, Nick's response correlates with Twitter as 
 well:











 Thanks,



 Tatham Oddie

 au mob: +61 414 275 989, us cell: +1 213 422 7068, skype: tathamoddie, 
 landline: +61 2 8011 3982, fax: +61 2 9475 5172



 my business: tixi.com.auhttp://tixi.com.au/ - Ticketing without the dramas












 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
  
 [mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
  On Behalf Of Nick Randolph


 Sent: Tuesday, 1 December 2009 10:55 AM
 To: ozSilverlight
 Subject: RE: Our new silverlight site






 Ross










 Since as you said this was a bit of a cheap marketing email I'm going to 
 retaliate by providing what I hope will be constructive criticism:




 -  I hate menus that disappear! The way the menus disappear 
 completely makes the site hard to use.  I flipped windows whilst the site was 
 loading (sorry short attention span) and when I came back the menus had 
 already gone - took me a while to find them.




 -  The site's infuriatingly slow - all the ui transitions are too 
 slow for my liking.




 -  There are some positioning issues whereby the close icon is half 
 cut off by the edge of the screen




 -  When you go into looking at one of the products 
 (http://www.michaelhill.com/#ProductList?ProductMenuItemId=8ProductMenuSubItemId=ParentScreenId=3)
  it's then not clear where to go from there.





 General feedback - visually it's quite pleasing. Navigation leaves quite a 
 bit to be desired.





 Nick Randolph | Built To Roam | Microsoft MVP - Device Application 
 Development | +61 412 413 425


 The information contained in this email is confidential. If you are not the 
 intended recipient, you may not disclose or use the information in this email 
 in any way. Built To Roam does not guarantee the integrity of any emails or 
 attached files. The views or opinions expressed are the author's own and may 
 not reflect the views or opinions of Built To Roam.










 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
  
 [mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
  On Behalf Of Ross McKinnon


 Sent: Tuesday, 1 December 2009 9:51 AM
 To: ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
 Subject: Our new silverlight site








 Hi all, as you guys aren't exactly our target market, this can't be 
 considered a cheap marketing email to promote our new website, but more a 
 demonstration of how silverlight can be utilized to create a global retail 
 branding site.







 On Monday, we released our new website which is written completely in 
 silverlight. If you get a chance to look at the site 
 (www.michaelhill.comhttp://www.michaelhill.com/) it has a number of 
 interesting technical features that I would like to point out to you all.




 1.  Heavy integration of smooth streaming video.


 2.  Deep zoom for the product carousel.  Significant bandwidth savings 
 are made by the in-built lazy loading of deep zoom product images, plus the 
 natural friction effect.




 3.  Integrated video inside a deep zoom image  

RE: Our new silverlight site

2009-12-01 Thread Jordan Knight
I find mum and dad users don't even know what tech they are using. Do you have 
flash installed?. What?. Can you play youtube videos?

From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Shane Morris
Sent: Wednesday, 2 December 2009 8:48 AM
To: ozSilverlight
Subject: RE: Our new silverlight site

I don't find that sad. Average users should not have to think about whether 
something is Flash or Silverlight. We think the technology is cool, users 
should just think the site is cool. Hopefully users today don't say 'nice PHP 
web site'? :)

Shane

Shane Morris  |  User Experience Evangelist  |  Microsoft Australia  |  
shan...@microsoft.commailto:shan...@microsoft.com  |  
blogs.msdn.com/shanemohttp://blogs.msdn.com/shanemo



From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang
Sent: Wednesday, 2 December 2009 7:51 AM
To: ozSilverlight
Subject: Re: Re: Our new silverlight site

One thing I find sad about all this stuff is, the average user is going to say 
Nice Flash website. :(
On Wed, Dec 2, 2009 at 1:10 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
I just noticed that you integrated 3 videos with the deep zoom. It looks cool.

On Wed, Dec 2, 2009 at 12:59 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Wow that's nice :)



On Tue, Dec 1, 2009 at 7:30 PM, rjemp...@gmail.commailto:rjemp...@gmail.com 
wrote:
The company history page is another interesting use of deep zoom : 
http://www.michaelhill.com.au/#CompanyHistory

Click the pause button to skip the video


On 01/12/2009 10:45am, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
 Thanks for sharing.








 What do you mean by Application lifetime objects / client side services?


 It's nice the way you use deepzoom. Altough I was thinking I could zoom in 
 out of the products and then I noticed that it was mainly to preload. 
 That's nice.


 It would be good to know a bit more on some topics, for example security, how 
 you used deep zoom, SEO and analytics.











 I agree with most of the comments around navigation, slot transitions and 
 movies. It's some valuable feedback.






 Miguel.








 On Tue, Dec 1, 2009 at 11:00 AM, Tatham Oddie 
 tat...@oddie.com.aumailto:tat...@oddie.com.au wrote:








 Sounds like some really cool technical work you've done!



 From an interaction perspective, Nick's response correlates with Twitter as 
 well:











 Thanks,



 Tatham Oddie

 au mob: +61 414 275 989, us cell: +1 213 422 7068, skype: tathamoddie, 
 landline: +61 2 8011 3982, fax: +61 2 9475 5172



 my business: tixi.com.auhttp://tixi.com.au/ - Ticketing without the dramas












 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
  
 [mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
  On Behalf Of Nick Randolph


 Sent: Tuesday, 1 December 2009 10:55 AM
 To: ozSilverlight
 Subject: RE: Our new silverlight site






 Ross










 Since as you said this was a bit of a cheap marketing email I'm going to 
 retaliate by providing what I hope will be constructive criticism:




 -  I hate menus that disappear! The way the menus disappear 
 completely makes the site hard to use.  I flipped windows whilst the site was 
 loading (sorry short attention span) and when I came back the menus had 
 already gone - took me a while to find them.




 -  The site's infuriatingly slow - all the ui transitions are too 
 slow for my liking.




 -  There are some positioning issues whereby the close icon is half 
 cut off by the edge of the screen




 -  When you go into looking at one of the products 
 (http://www.michaelhill.com/#ProductList?ProductMenuItemId=8ProductMenuSubItemId=ParentScreenId=3)
  it's then not clear where to go from there.





 General feedback - visually it's quite pleasing. Navigation leaves quite a 
 bit to be desired.





 Nick Randolph | Built To Roam | Microsoft MVP - Device Application 
 Development | +61 412 413 425


 The information contained in this email is confidential. If you are not the 
 intended recipient, you may not disclose or use the information in this email 
 in any way. Built To Roam does not guarantee the integrity of any emails or 
 attached files. The views or opinions expressed are the author's own and may 
 not reflect the views or opinions of Built To Roam.










 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
  
 [mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
  On Behalf Of Ross McKinnon


 Sent: Tuesday, 1 December 2009 9:51 AM
 To: ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
 Subject: Our new silverlight site








 Hi all, as you guys 

RE: Our new silverlight site

2009-12-01 Thread Jordan Knight
+ you get the have you heard of Adobe?. nup. What about Microsoft?. 
Totally.

Yet they still install Flash which is from a company they've never heard of... 
it's just the they trust YouTube to not bomb their puter machine... 

I reckon it's more about the source site's credibility than plug-in vendor 
credibility. 

(the only other thing is on locked down machines - up to the admin peeps to let 
the SL client trough their labyrinth of superfluous security systems :P)

-Original Message-
From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Scott Barnes
Sent: Wednesday, 2 December 2009 10:56 AM
To: ozSilverlight
Subject: RE: Our new silverlight site

Most of the research I've read / conducted around plugins + risk has 
constantly shown that the average user will install anything put before them 
provided they get access to the context of what they were seeking. 400million+ 
installs of Silverlight testifies to this behavior.

Don't get my engines started on the misconception of what mums  dads do 
online, i used to bore my team in Redmond to sleep with my soap boxing on this 
subject :)


From: ozsilverlight-boun...@ozsilverlight.com 
[ozsilverlight-boun...@ozsilverlight.com] On Behalf Of Winston Pang 
[winstonp...@gmail.com]
Sent: Tuesday, December 01, 2009 3:28 PM
To: ozSilverlight
Subject: Re: Our new silverlight site

Haha yeah, that's true. I asked a family member once, Flash is installed 
right?, I have Windows Media Player Installed, ..., Oh I also have iTunes 
installed.

I love users, maybe it goes to show we're still a lot far off from making 
computers easily understandable for average users.

On Wed, Dec 2, 2009 at 10:23 AM, Jordan Knight 
jordan.kni...@readify.netmailto:jordan.kni...@readify.net wrote:
I find mum and dad users don't even know what tech they are using. Do you have 
flash installed?. What?. Can you play youtube videos?

From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Shane Morris
Sent: Wednesday, 2 December 2009 8:48 AM

To: ozSilverlight
Subject: RE: Our new silverlight site

I don’t find that sad. Average users should not have to think about whether 
something is Flash or Silverlight. We think the technology is cool, users 
should just think the site is cool. Hopefully users today don’t say ‘nice PHP 
web site’? ☺

Shane

Shane Morris  |  User Experience Evangelist  |  Microsoft Australia  |  
shan...@microsoft.commailto:shan...@microsoft.com  |  
blogs.msdn.com/shanemohttp://blogs.msdn.com/shanemo



From: 
ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
 
[mailto:ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com]
 On Behalf Of Winston Pang
Sent: Wednesday, 2 December 2009 7:51 AM
To: ozSilverlight
Subject: Re: Re: Our new silverlight site

One thing I find sad about all this stuff is, the average user is going to say 
Nice Flash website. :(
On Wed, Dec 2, 2009 at 1:10 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
I just noticed that you integrated 3 videos with the deep zoom. It looks cool.

On Wed, Dec 2, 2009 at 12:59 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Wow that's nice :)



On Tue, Dec 1, 2009 at 7:30 PM, rjemp...@gmail.commailto:rjemp...@gmail.com 
wrote:
The company history page is another interesting use of deep zoom : 
http://www.michaelhill.com.au/#CompanyHistory

Click the pause button to skip the video


On 01/12/2009 10:45am, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
 Thanks for sharing.








 What do you mean by Application lifetime objects / client side services?


 It's nice the way you use deepzoom. Altough I was thinking I could zoom in 
 out of the products and then I noticed that it was mainly to preload. 
 That's nice.


 It would be good to know a bit more on some topics, for example security, how 
 you used deep zoom, SEO and analytics.











 I agree with most of the comments around navigation, slot transitions and 
 movies. It's some valuable feedback.






 Miguel.








 On Tue, Dec 1, 2009 at 11:00 AM, Tatham Oddie 
 tat...@oddie.com.aumailto:tat...@oddie.com.au wrote:








 Sounds like some really cool technical work you’ve done!



 From an interaction perspective, Nick’s response correlates with Twitter as 
 well:











 Thanks,



 Tatham Oddie

 au mob: +61 414 275 989, us cell: +1 213 422 7068, skype: tathamoddie, 
 landline: +61 2 8011 3982, fax: +61 2 9475 5172



 my business: tixi.com.auhttp://tixi.com.au/ – Ticketing without the dramas












 From: 
 ozsilverlight-boun...@ozsilverlight.commailto:ozsilverlight-boun...@ozsilverlight.com
  
 [mailto:ozsilverlight-boun

RE: Wait for multiple Async calls to finish (SL3)

2009-08-12 Thread Jordan Knight
I had a quick look at this the other day and when I compiled up the reactive 
dll, the classes were different that in the example:

ObservableExtensions
.DoAsync
Didn't exist?

I didn't really examine where I was going wrong in any great depth, so If you 
have any success I'd be interested to hear about it :)


Jordan Knight
Readify | Senior Consultant
Lead Trainer - Rich Interactive Media
Suite 408 LifeLabs Building | 198 Harbour Esplanade | Docklands | VIC 3008 | 
Australia
M: +61 403 532 404 | E: 
jordan.kni...@readify.netmailto:jordan.kni...@readify.net | W: 
http://www.readify.net | B: http://blog.webjak.net




From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Jake Ginnivan
Sent: Wednesday, 12 August 2009 6:32 PM
To: OzSilverlight@ozsilverlight.com
Subject: RE: Wait for multiple Async calls to finish (SL3)

http://themechanicalbride.blogspot.com/2009/07/introducing-rx-linq-to-events.html

Have a look at this, the Silverlight team use it in their unit testing. I still 
have not used it yet, but really keen to dive in and use this stuff.

Jake Ginnivan
IT Coordinator

ioGlobal Pty Ltd.
ISO 9001 Quality Certified
Resource Analytics  Data Systems Automation
T:  +61 8 6555 6510
F:  +61 8 6311 3256
M:  +61 403 846 400
E:  jake.ginni...@ioglobal.netmailto:jake.ginni...@ioglobal.net
www.ioglobal.nethttp://www.ioglobal.net/

From: OzSilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Asheesh Soni
Sent: Wednesday, 12 August 2009 3:49 PM
To: OzSilverlight@ozsilverlight.com
Subject: Wait for multiple Async calls to finish (SL3)

Any one knows a better / cleaner way to do this than:

http://silverlight.net/forums/t/12437.aspx
http://silverlight.net/forums/t/72631.aspx

I have already dumped daisy-chaining of calls in favor of multiple async calls 
with a boolean flag for each.
After calling all the async operations, I am using a DispatcherTimer ticker 
event to poll if all the flags have been set.
Works like a charm, and a huge improvement in performance and readability over 
the chaining. But still not the perfect solution.

I couldn't get this one to work:
http://stackoverflow.com/questions/811855/threading-multiple-async-calls-silverlight
The thread sleeps for ever on the 1st .waitone call.

Any ideas?

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: DataGrid mouseover vsm

2009-08-11 Thread Jordan Knight
Here ya go, lifted it using reflector :)


  Style TargetType=local:DataGridRow
Setter Property=IsTabStop Value=False /
Setter Property=Template
Setter.Value
ControlTemplate TargetType=local:DataGridRow
localprimitives:DataGridFrozenGrid Name=Root
vsm:VisualStateManager.VisualStateGroups
vsm:VisualStateGroup x:Name=CommonStates
vsm:VisualState x:Name=Normal/
vsm:VisualState x:Name=NormalAlternatingRow
Storyboard
DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=0/
/Storyboard
/vsm:VisualState
vsm:VisualState x:Name=MouseOver
Storyboard
DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=.5/
/Storyboard
/vsm:VisualState
vsm:VisualState x:Name=NormalSelected
Storyboard
DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/
/Storyboard
/vsm:VisualState
vsm:VisualState x:Name=MouseOverSelected
Storyboard
DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/
/Storyboard
/vsm:VisualState
vsm:VisualState x:Name=UnfocusedSelected
Storyboard
DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/
ColorAnimation Duration=0 
Storyboard.TargetName=BackgroundRectangle 
Storyboard.TargetProperty=(Fill).Color To=#FFE1E7EC/
/Storyboard
/vsm:VisualState
/vsm:VisualStateGroup
vsm:VisualStateGroup x:Name=ValidationStates
vsm:VisualState x:Name=Valid/
vsm:VisualState x:Name=Invalid
Storyboard
ObjectAnimationUsingKeyFrames 
Duration=0 Storyboard.TargetName=BackgroundRectangle 
Storyboard.TargetProperty=Visibility
DiscreteObjectKeyFrame KeyTime=0 
Value=Collapsed/
/ObjectAnimationUsingKeyFrames
DoubleAnimation 
Storyboard.TargetName=InvalidVisualElement 
Storyboard.TargetProperty=Opacity Duration=0 To=1/
/Storyboard
/vsm:VisualState
/vsm:VisualStateGroup
/vsm:VisualStateManager.VisualStateGroups
Grid.RowDefinitions
RowDefinition/
RowDefinition Height=Auto/
RowDefinition Height=Auto/
/Grid.RowDefinitions
Grid.ColumnDefinitions
ColumnDefinition Width=Auto /
ColumnDefinition/
/Grid.ColumnDefinitions

Grid.Resources
Storyboard x:Key=DetailsVisibleTransition
DoubleAnimation 
Storyboard.TargetName=DetailsPresenter 
Storyboard.TargetProperty=ContentHeight Duration=00:00:0.1 /
/Storyboard
/Grid.Resources

Rectangle x:Name=BackgroundRectangle 
Grid.RowSpan=2 Grid.ColumnSpan=2 Opacity=0 Fill=#FFBADDE9/
Rectangle x:Name=InvalidVisualElement 
Grid.RowSpan=2 Grid.ColumnSpan=2 Opacity=0 Fill=#FFF7D8DB/

localprimitives:DataGridRowHeader Grid.RowSpan=3 
Name=RowHeader localprimitives:DataGridFrozenGrid.IsFrozen=True /
localprimitives:DataGridCellsPresenter Grid.Column=1 
Name=CellsPresenter localprimitives:DataGridFrozenGrid.IsFrozen=True /
localprimitives:DataGridDetailsPresenter Grid.Row=1 
Grid.Column=1 Name=DetailsPresenter /
Rectangle Grid.Row=2 Grid.Column=1 
Name=BottomGridLine 

RE: DataGrid mouseover vsm

2009-08-11 Thread Jordan Knight
LOL, upgrade already would ya :P

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Tuesday, 11 August 2009 10:54 PM
To: ozsilverlight@ozsilverlight.com
Subject: Re: DataGrid mouseover vsm

Just in case anyone else tries to use Jordan's dodgy code... heheh... If you 
try to use that Style in Silverlight 2 make sure you add spaces to the names of 
the states. ie NormalAlternatingRow should be Normal AlternatingRow, 
MouseOverSelected should be MouseOver Selected... and so on.

I'm just sayin...

Thanks all for the replies. :)

cheers,
Stephen

On Tue, Aug 11, 2009 at 4:21 PM, Jordan Knight 
jordan.kni...@readify.netmailto:jordan.kni...@readify.net wrote:

Here ya go, lifted it using reflector :)





  Style TargetType=local:DataGridRow

Setter Property=IsTabStop Value=False /

Setter Property=Template

Setter.Value

ControlTemplate TargetType=local:DataGridRow

localprimitives:DataGridFrozenGrid Name=Root

vsm:VisualStateManager.VisualStateGroups

vsm:VisualStateGroup x:Name=CommonStates

vsm:VisualState x:Name=Normal/

vsm:VisualState x:Name=NormalAlternatingRow

Storyboard

DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=0/

/Storyboard

/vsm:VisualState

vsm:VisualState x:Name=MouseOver

Storyboard

DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=.5/

/Storyboard

/vsm:VisualState

vsm:VisualState x:Name=NormalSelected

Storyboard

DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/

/Storyboard

/vsm:VisualState

vsm:VisualState x:Name=MouseOverSelected

Storyboard

DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/

/Storyboard

/vsm:VisualState

vsm:VisualState x:Name=UnfocusedSelected

Storyboard

DoubleAnimation 
Storyboard.TargetName=BackgroundRectangle Storyboard.TargetProperty=Opacity 
Duration=0 To=1/

ColorAnimation Duration=0 
Storyboard.TargetName=BackgroundRectangle 
Storyboard.TargetProperty=(Fill).Color To=#FFE1E7EC/

/Storyboard

/vsm:VisualState

/vsm:VisualStateGroup

vsm:VisualStateGroup x:Name=ValidationStates

vsm:VisualState x:Name=Valid/

vsm:VisualState x:Name=Invalid

Storyboard

ObjectAnimationUsingKeyFrames 
Duration=0 Storyboard.TargetName=BackgroundRectangle 
Storyboard.TargetProperty=Visibility

DiscreteObjectKeyFrame KeyTime=0 
Value=Collapsed/

/ObjectAnimationUsingKeyFrames

DoubleAnimation 
Storyboard.TargetName=InvalidVisualElement 
Storyboard.TargetProperty=Opacity Duration=0 To=1/

/Storyboard

/vsm:VisualState

/vsm:VisualStateGroup

/vsm:VisualStateManager.VisualStateGroups

Grid.RowDefinitions

RowDefinition/

RowDefinition Height=Auto/

RowDefinition Height=Auto/

/Grid.RowDefinitions

Grid.ColumnDefinitions

ColumnDefinition Width=Auto /

ColumnDefinition/

/Grid.ColumnDefinitions



Grid.Resources

Storyboard x:Key=DetailsVisibleTransition

DoubleAnimation 
Storyboard.TargetName=DetailsPresenter 
Storyboard.TargetProperty=ContentHeight Duration=00:00:0.1

RE: SDDN Sydney August Meeting

2009-08-03 Thread Jordan Knight
Oops, I think I borked it - seems to work in IE though :) I'll fix it up ASAP.

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Miguel Madero
Sent: Tuesday, 4 August 2009 12:36 AM
To: ozsilverlight@ozsilverlight.com
Subject: Re: SDDN Sydney August Meeting

Hi Greg,

Thanks for letting me know. Sorry about that. We'll be updating the site soon.

See you there.
On Tue, Aug 4, 2009 at 12:11 AM, Gregory Koulax 
g...@segator.commailto:g...@segator.com wrote:

Hi Miguel,



The registration tool is out of order?







Regards,

GREGORY KOULAX | Principal



SEGATOR Pty Limited

Unit 1, First Floor, 17-21 Bowden Street

ALEXANDRIA NSW 2015

AUSTRALIA

Tel: +612 9318 0122

Mob: +61433 193 861

Skype: gkoulax



From: ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com 
[mailto:ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com]
 On Behalf Of Miguel Madero
Sent: Tuesday, 4 August 2009 12:08 AM
To: ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subject: Re: SDDN Sydney August Meeting



Just a reminder of todays meeting. Jose will be talking about Interactivity and 
Experience and Chris will lead a discussion on User Experience Design. You 
can't miss it.

On Wed, Jul 22, 2009 at 10:57 PM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:

This month Jose Fajardohttp://cynergysystems.com/blogs/page/josefajardo from 
Cynergy Systemshttp://cynergysystems.com/ will talk on Don't lose site of 
what's important, Interactivity and Experience at the Crown Hotel. Here are 
all the details:

Crown Hotel
162 Elizabeth St
Sydney
August 4th. 6:00 pm for drinks, 6:30 for the talk
Use the registration tool on the top of the SDDN Sitehttp://www.sddn.org.au/.



In our last couple of meetings we had low assistance and we might need an extra 
help to promote the meetings. I know there are a lot of Silverlight Developers 
out there and I think they can benefit from attending the User Group. Please 
help us spread the word.

Also if you have any suggestions for this or future events, please let us know.



For details about the talk, go 
herehttp://miguelmadero.blogspot.com/2009/07/silverlight-designer-and-developer.html


--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com



Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com



Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: 

Nerd Dinner in Sydney Tonight

2009-07-15 Thread Jordan Knight
Hey all,

Just thought I'd extend the invite to the Nerd Dinner in Sydney tonight at PJ 
O'Brien's in the city from 6.

I'm having a big fat parma and beers myself :)

http://www.nerddinner.com/726

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Scott Barnes
Sent: Tuesday, 14 July 2009 5:43 PM
To: ozsilverlight@ozsilverlight.com
Subject: RE: SEO in SL3

Also note, that if RIA Services is not your cup of tea, we've baked the concept 
of Deep Linking into Silverlight outside the RIA Services. Using the 
Navigation Framework you can add #bookmark type urls to your said URL.

The thing to remember about SEO is to keep in mind that you should architect 
your solution to use both Visual State management and Data State Management 
(basically combine Deep Linking with Isolated Storage).

When I manage to find some free time (at this point 2011 is likely when) I've 
been planning on writing a Guidance Document on how to achieve this in more 
detail. As it's actually much easier than most fear, just requires some forward 
planning at the start of a solution is all.

Failing that, RIA Services does the job good enough.


From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Ross Jempson
Sent: Tuesday, July 14, 2009 1:59 PM
To: ozsilverlight@ozsilverlight.com
Subject: RE: SEO in SL3

Thanks for that.  It shows exactly what I wanted.

He gives a link to another blog and sample app that are easy to understand

http://blogs.msdn.com/waldred/archive/2009/03/24/search-engine-optimization-for-silverlight-applications-part-2.aspx

http://code.msdn.microsoft.com/Release/ProjectReleases.aspx?ProjectName=RiaServicesReleaseId=2390

It uses RIA services to access the data, but you can wire it up to any data 
source.  And of course you could easily hard code it if your app doesn't have 
much dynamic data.

From: Perry Stathopoulos [mailto:psta...@gmail.com]
Sent: Tuesday, 14 July 2009 12:56 PM
To: ozsilverlight@ozsilverlight.com
Subject: Re: SEO in SL3

I'm thinking it has more to do with .NET RIA Services. Take a look at this:
http://blogs.msdn.com/brada/archive/2009/03/25/silverlight-3-and-seo.aspx

Ross, please share if you find a better way.


From: Jonathan Parkermailto:jonathanparkerem...@gmail.com
Sent: Monday, July 13, 2009 10:31 PM
To: ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subject: Re: SEO in SL3

From what I gather it's basically saying that by using dynamic data with 
hyperlinks to an asp.nethttp://asp.net page that has your silverlight app on 
it you can do SEO+deep linking with SL3.
On Tue, Jul 14, 2009 at 12:14 PM, Ross Jempson 
ross.jemp...@michaelhill.com.aumailto:ross.jemp...@michaelhill.com.au wrote:

I am investigating how to best do SEO in SL3.



I have seen the following quoted 100's of times all over the web, but none of 
the authors  have elaborated on the specifics :



By utilizing business objects on the server, together with 
ASP.NEThttp://ASP.NET controls and site maps, users can automatically mirror 
database-driven RIA content into HTML that is easily indexed by the leading 
search engines.



Does anyone know of any resources that elaborate on such techniques?


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 

RE: Silverlight Designer and Developer Network Sydney - July Meeting

2009-06-29 Thread Jordan Knight
Ohh, that reminds me thanks Miguel...

The next Melbourne meet is tonight (Tuesday) @ 5:30 (for Pizza) - MS offices 
Southbank.

We have ShaneMo on Sketchflow and Mahesh Krishnan on new Blend 3 features.

Details here: http://blog.webjak.net/2009/06/26/sddn-meeting-30-june-melbourne/

Please register using the tool in the header at http://sddn.org.au

(and I'll update the tool for the Sydney meet in the morning!)

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Miguel Madero
Sent: Tuesday, 30 June 2009 1:08 AM
To: ozsilverlight@ozsilverlight.com
Subject: Silverlight Designer and Developer Network Sydney - July Meeting

Our next meeting as usual will be on the first Tuesday of the month. Here are 
the important bits and the full details are on my 
bloghttp://miguelmadero.blogspot.com/2009/06/silverlight-designer-and-developer.html

This month Ali Shafai will talk on Silverlight, Prism and Unity and Miguel 
Madero will do a mini presentation on a less attractive, but important topic, 
Security in Silverlight at the Crown Hotel.

Crown Hotel
162 Elizabeth St
Sydney
June 7. 6:00 pm
Use the registration tool on the top of the SDDN Sitehttp://www.sddn.org.au/.



--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Silverlight limited to 2 simultaneous connections?

2009-06-22 Thread Jordan Knight
I'd have thought it would be a lowest common denominator problem myself... the 
crappest browser can do 2 at once so thats what Silverlight supports to 
maintain the best compat?

-Original Message-
From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Caleb Jenkins
Sent: Monday, 22 June 2009 9:13 PM
To: ozsilverlight@ozsilverlight.com
Subject: RE: Silverlight limited to 2 simultaneous connections?

John - generally that's a server restriction, and something that has been well 
documented on for IIS as well as various strategies in the HTML communities 
have been developed to help get around this.

For IIS its important when you are using IIS as an application / middle teir / 
wcf server with an IIS front end web server. In that scenario you still want 
the limitation from the front end server to the clients, but you want to 
increase the allowed cnnection from the app server to the UI server.

The more general html/web strategies involve breaking you resources in to 
various sub domains/servers. Images.domain /css/js/html can be placed on 
various domains to increase your simultanious connections from 2 to 8. The 
other strategy is to increase individual payloads and decrease number of 
requests. This plays out by combining multiple images on to a single image and 
the using css and css sprite support to slice and lay out the images client 
side. Take a look at the bing.com home page for an exaple of that. The blurry 
boxes are actually attached to the main image.

Hope that helps! (I'm going to blame all typo's on my phone's intelli-type 
and the complete lack of a spell check :)

Caleb Jenkins

ca...@improvingenterprises.com
m: 469.867.4552 | b: developingUX.com

[*] Improving - It's what we do!
(send from Windows Mobile 6)



From: John OBrien j...@soulsolutions.com.au
Sent: Monday, June 22, 2009 2:16 AM
To: ozsilverlight@ozsilverlight.com ozsilverlight@ozsilverlight.com
Subject: Silverlight limited to 2 simultaneous connections?

Anyone know why Silverlight2 seems to be restricted to 2 simultaneous requests 
only?
I have changed the browser settings to allow 8, put in 4 different domains to 
allow for 8 and even used firefox that supports 8 natively with no luck.

Is there a configuration somewhere at the plugin level to change this?

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Designing a Silverlight control - DeepEarth

2009-06-18 Thread Jordan Knight
hey mate,

The Eventr SuperDeepZoom control (http://www.codeplex.com/eventr) uses parts 
and states too, all the overlays etc are thus fully templatable...

You might get (and set) some ideas from there.

Cheers,

Jordan.

P.S. I'm looking forward to checking out the DeepEarth changes soon!

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of John OBrien
Sent: Friday, 19 June 2009 10:00 AM
To: ozsilverlight@ozsilverlight.com
Subject: Designing a Silverlight control - DeepEarth

Hey guys,
Over at the DeepEarth project we are going through some big changes moving away 
from just being one big map control to becoming a toolkit of map controls and 
components. The idea is to support in theory any Silverlight map control 
including a lighter weight version of our own and the new Bing Maps control.

Anyway we're trying to design a really good template to follow and would love 
your feedback / tips / advice / links.

The wiki page is here:
http://deepearth.codeplex.com/Wiki/View.aspx?title=Control%20Architecture

But to summarise I'm looking at the Parts and State model but also a way to 
separate out the base map implementation from the control using an interface.

The first example code I have committed is a Coordinate control, basically 
listens for the mousemove event and calls a method on the map to translate the 
pixel position of the mouse to Latitude/Longitude. I have used the parts and 
state model with the generic.xaml default, spotted most people seem to use 
constantly name constants for the values and all state changes seem to be 
called in one GoToState method.

The key design decisions are:


1.   Each control is a separate project

2.   Each control has its own map interface class

3.   Each specific map implementation for each control would be its own 
project.

Although this appears to be a nightmare of potentially hundreds of projects, 
for an open source project (where we are encouraging everyone to come and 
contribute a control) the separation will hopefully make management easier. 
Thoughts?

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: ReMIX is on it's way

2009-06-08 Thread Jordan Knight
Not to be biased or anything but :P ...

.. in the Silverlight 3 Super Session I'll be doing nearly 30 Silverlight 3 
tech demos in 45 minutes.

Make sure you all get a seat right down the front so I don't have to strain to 
hear your heckling :)

-  and double make sure you come and say hi - it'll be a great chance to put 
some faces to names and to talk Silverlight.

Cheers,

Jordan.

BTW Jose's Expression Blend 3 talk will rock for sure!

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of jason schluter
Sent: Saturday, 6 June 2009 5:52 PM
To: ozsilverlight@ozsilverlight.com
Subject: ReMIX is on it's way

Countdown to ReMix.

Now's the time to discuss:

Getting the most out of ReMix.

What's hot at ReMix09.


I think that Session 3 Creative Track will be hot:
The Next Level of Creativity with Expression Blend 3.

As for getting the most out of ReMix,
I believe that asking the list is one way to start getting
the most out of ReMix.

I'll leave these questions open for your answers.

Cheers (at Oscars Lounge Bar),

Jason Schluter
Blender3DLive

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.339 / Virus Database: 270.12.56/2161 - Release Date: 06/07/09 
17:53:00

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Silverlight Binding Expressions

2009-05-19 Thread Jordan Knight
It's a good idea in principal - but if it were me I wouldn't let my model 
anywhere near my UI on all but the smallest projects. More often than not it 
causes heartache down the track...

From: OzSilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Tuesday, 19 May 2009 5:09 PM
To: OzSilverlight@ozsilverlight.com
Subject: Re: Silverlight Binding Expressions

I read a blog post not so long ago that showed an example of this but rather 
than modifying the Data class being bound to, they uses a partial class 
(effectively adding an additional property to the Dataclass in its own file). 
This enabled them to bind to the new property without having to have access to 
the data class (ie if the data class was part of the generated proxy)

Not actually tried it and not sure where that blog post is... will check my 
Del.icio.ushttp://Del.icio.us links and see if I bookmarked it.

cheers,
Stephen
On Tue, May 19, 2009 at 8:42 AM, Ross Jempson 
ross.jemp...@michaelhill.com.aumailto:ross.jemp...@michaelhill.com.au wrote:

Assuming the binding is one-way, and you 'own' the model to which you are 
binding, can't you extend it and create a derived property there?



Lets say you were binding to a Person class



public string  Firstname { get; set; }

public string LastName { get; set; }



public string FullName

{

get { return Firstname +   + LastName; }

set { }

}







Textblock Text={Binding FullName



From: Asheesh Soni [mailto:asheeshs...@gmail.commailto:asheeshs...@gmail.com]
Sent: Tuesday, 19 May 2009 10:37 AM
To: OzSilverlight@ozsilverlight.commailto:OzSilverlight@ozsilverlight.com
Subject: Silverlight Binding Expressions



Hello

I have a very trivial problem, but all the solutions to it seem to be a bit of 
an overkill. Just looking for a simple solution

So here's the problem: Bind a Textblock to more than one field (or a string 
and a field)

For example: Textblock Text={Binding FirstName +   + LastName} /
Or, Textblock Text={Binding You are logged in as: + {LoginName}} /

I know the following solutions already:

1. Have two Textblocks with clean and simple bindings.
2. Use a Converter (with ConvertBack for two way binding).
3. Use Xambda (Yeah, I mean a Generic Lambda Converter used in Xaml with a 
Lambda expression)

References for Xambda:
http://www.fikrimvarnet/lestirelim/?p=15http://www.fikrimvar.net/lestirelim/?p=15
http://marlongrech.wordpress.com/2008/02/10/embed-code-in-xaml/

And I know advocates of Designer/Developer work flow will argue that embedding 
complex expressions in Xaml defeats the whole purpose and leads to the bad (or 
good) old days of spaghetti code. But I guess, having trivial code in Xaml (eg 
{FirstName} + {LastName}) shouldn't really be a problem.

Basically, All I need is a built-in, in-line Converter for one-way binding in 
Xaml, without having to create my own one line Converters for such trivial 
transformations.

Any ideas?


Thanks

Soni


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists
__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.329 / Virus Database: 270.12.32/2118 - Release Date: 05/16/09 
17:05:00

RE: First Virtaul SDDN Meeting

2009-05-18 Thread Jordan Knight
I think Monthly to every six weeks is a good idea and alternate between 
physical meet ups and virtual ones... Of course if people are keen we can do 
the virtual meets far more often as suggested.

Remember, at the physical meet ups you get to have beer :) It's just not the 
same thing smashing 10 beers at my keyboard as it is having them with you guys 
:)

P.S. Sorry I missed last night, I've just moved house and don't have broadband 
on yet.

Jordan.

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Mahesh S. Krishnan
Sent: Tuesday, 19 May 2009 7:20 AM
To: ozsilverlight@ozsilverlight.com
Subject: RE: First Virtaul SDDN Meeting

It was good meeting, Miguel, although I had to leave around 10:45...Didn't 
expect it to go that long :) My 2 cents -


1.   I would say c. It would be good to alternate between the two. 
Alternatively, we could have one presentation and then open the floor for 
discussions in the same meeting

2.   I think initially, we could arrange it in an ad-hoc manner, but as we 
get more people into it, fit it into a regular slot. I feel fortnightly is just 
too frequent - probably one every 6 weeks.

Cheers
Mahesh

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Miguel Madero
Sent: Tuesday, 19 May 2009 12:15 AM
To: ozsilverlight@ozsilverlight.com
Subject: Re: First Virtaul SDDN Meeting

Everyone,

Thanks to all of you who attend the first Virtual SDDN. I think we had some 
interesting discussions. Some of them we can definitely continue on this mail 
list or in the next Virtual SDDN. Unfortunately I didn't record this meeting 
(I'll make sure to do it next time), but I'll include a list of resources from 
the talk, but first of all I'd like to ask a couple of questions.

1. What do you thing about the format?
a) I hate open spaces, bring me some speakers with Powerpoints.
b) It's good once in a while, but we should try a different format next 
time (probably alternate)
c) I love it. Altough presentations are good, discussions add a lot of 
value.
d) ???
2. How often would you like to have this type of events?
   a) Once a month.
   b) Fortnightly
   c) Eventually
   d) ???


During the talk we discussed about Patterns, we only had a chance to talk about 
MVVM and Tom told us he have been using Prism with MVP and Unity. These are 
some links
Prismhttp://compositewpf.codeplex.com/
MVVM by Nikhilhttp://www.nikhilk.net/Silverlight-ViewModel-Pattern.aspx
MVVM by 
Jonashttp://jonas.follesoe.no/YouCardRevisitedImplementingTheViewModelPattern.aspx

We also talked a bit about Memory Leaks.
Delay on Memory Leaks in 
SLhttp://blogs.msdn.com/delay/archive/2009/03/11/where-s-your-leak-at-using-windbg-sos-and-gcroot-to-diagnose-a-net-memory-leak.aspx
I mentioned that we could use 
WinDbghttp://www.google.com.au/url?sa=tsource=webct=rescd=1url=http%3A%2F%2Fwww.microsoft.com%2Fwhdc%2Fdevtools%2Fdebugging%2Finstallx86.Mspxei=p2oRSoDwBYrKM5K92FIusg=AFQjCNHf3h9385pKvQHMJRRGwiEwm4pl1Asig2=tcJmKfnydI_ZtTeU61vDIA
 or 
SilverlightSpyhttp://silverlightspy.com/silverlightspy/download-silverlight-spy/
 to detect Memory Leaks.
When it comes to WinDbg, Tess knows it all and she blogged about how to setup 
WinDbg for 
Silverlighthttp://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx

Andy and Stephen told us about the cool apps that they've written in 
Silverlight, but we don't have a lot of resources to show atm.

At the end we talked a about Behaviours in Silverlight 3. Shawn Wildermouth has 
a series on this 
topichttp://wildermuth.com/2009/05/16/Writing_Behaviors_for_Silverlight_3_-_Part_1

We added a bonus topic on User Controls and we talked about the TreeView in the 
Silverlight Toolkit. We also mentioned the need to navigate the VisualTree to 
get to different Elements when needed. In this blog 
posthttp://miguelmadero.blogspot.com/2008/07/use-visualtreehelper-to-navigate_18.html
 I talked about how to use the VisualTreeHelper to do that and some extensions 
to do it easily (the code is avaailable for download). I've an updated version 
of this that supports more escenarios, like using expressions and LINQ to query 
for UIElements, contact me if you're interested.

I hope everyone enjoyed and got something out of this.
I'd love to have your feedback and see you again in another virtual or UG 
meeting.

Thanks
On Mon, May 18, 2009 at 10:29 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:

This is the link for the 
eventhttps://www323.livemeeting.com/lrs/8000181573/Registration.aspx?pageName=gprcrzd1lgf2dhh4,
 please register before the meeting and be sure you have Live Meeting installed 
on your computer and your audio properly configured. Some people have asked me 
about the place and how is this a Virtual Event. We'll be using this tool 
called Live Meeting that allow us to interact with audio, video and share the 

RE: First Virtaul SDDN Meeting

2009-05-18 Thread Jordan Knight
$50 I believe, which makes the ticket $150 before the early bird cut-off (if 
it's not already cut-off)... but don't quote me :)

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Dimaz Pramudya
Sent: Tuesday, 19 May 2009 8:52 AM
To: ozsilverlight@ozsilverlight.com
Subject: Re: First Virtaul SDDN Meeting

How much is the special discount for ReMIX?
Cheers.

Regards,

Dimaz Pramudya
www.mypassionin.nethttp://www.mypassionin.net

On Tue, May 19, 2009 at 12:44 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
I forgot to add the resources that we showed at the end of the meeting

SDDN Website: http://www.sddn.org.au
OzSilverlightFeed: http://feeds2.feedburner.com/OzsilverlightFeed
SDDN Group in Facebook: http://groups.to/sddn
ReMIX: http://microsoft.com.au/remix
Special Discount for SDDN UG: ugvip149



On Tue, May 19, 2009 at 12:14 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Everyone,

Thanks to all of you who attend the first Virtual SDDN. I think we had some 
interesting discussions. Some of them we can definitely continue on this mail 
list or in the next Virtual SDDN. Unfortunately I didn't record this meeting 
(I'll make sure to do it next time), but I'll include a list of resources from 
the talk, but first of all I'd like to ask a couple of questions.

1. What do you thing about the format?
a) I hate open spaces, bring me some speakers with Powerpoints.
b) It's good once in a while, but we should try a different format next 
time (probably alternate)
c) I love it. Altough presentations are good, discussions add a lot of 
value.
d) ???
2. How often would you like to have this type of events?
   a) Once a month.
   b) Fortnightly
   c) Eventually
   d) ???


During the talk we discussed about Patterns, we only had a chance to talk about 
MVVM and Tom told us he have been using Prism with MVP and Unity. These are 
some links
Prismhttp://compositewpf.codeplex.com/
MVVM by Nikhilhttp://www.nikhilk.net/Silverlight-ViewModel-Pattern.aspx
MVVM by 
Jonashttp://jonas.follesoe.no/YouCardRevisitedImplementingTheViewModelPattern.aspx

We also talked a bit about Memory Leaks.
Delay on Memory Leaks in 
SLhttp://blogs.msdn.com/delay/archive/2009/03/11/where-s-your-leak-at-using-windbg-sos-and-gcroot-to-diagnose-a-net-memory-leak.aspx
I mentioned that we could use 
WinDbghttp://www.google.com.au/url?sa=tsource=webct=rescd=1url=http%3A%2F%2Fwww.microsoft.com%2Fwhdc%2Fdevtools%2Fdebugging%2Finstallx86.Mspxei=p2oRSoDwBYrKM5K92FIusg=AFQjCNHf3h9385pKvQHMJRRGwiEwm4pl1Asig2=tcJmKfnydI_ZtTeU61vDIA
 or 
SilverlightSpyhttp://silverlightspy.com/silverlightspy/download-silverlight-spy/
 to detect Memory Leaks.
When it comes to WinDbg, Tess knows it all and she blogged about how to setup 
WinDbg for 
Silverlighthttp://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx

Andy and Stephen told us about the cool apps that they've written in 
Silverlight, but we don't have a lot of resources to show atm.

At the end we talked a about Behaviours in Silverlight 3. Shawn Wildermouth has 
a series on this 
topichttp://wildermuth.com/2009/05/16/Writing_Behaviors_for_Silverlight_3_-_Part_1

We added a bonus topic on User Controls and we talked about the TreeView in the 
Silverlight Toolkit. We also mentioned the need to navigate the VisualTree to 
get to different Elements when needed. In this blog 
posthttp://miguelmadero.blogspot.com/2008/07/use-visualtreehelper-to-navigate_18.html
 I talked about how to use the VisualTreeHelper to do that and some extensions 
to do it easily (the code is avaailable for download). I've an updated version 
of this that supports more escenarios, like using expressions and LINQ to query 
for UIElements, contact me if you're interested.

I hope everyone enjoyed and got something out of this.
I'd love to have your feedback and see you again in another virtual or UG 
meeting.

Thanks

On Mon, May 18, 2009 at 10:29 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:

This is the link for the 
eventhttps://www323.livemeeting.com/lrs/8000181573/Registration.aspx?pageName=gprcrzd1lgf2dhh4,
 please register before the meeting and be sure you have Live Meeting installed 
on your computer and your audio properly configured. Some people have asked me 
about the place and how is this a Virtual Event. We'll be using this tool 
called Live Meeting that allow us to interact with audio, video and share the 
desktop, polls, QA, etc, but rather than trying to explain what Live Meeting 
is, you can just try it tonight. Just 
registerhttps://www323.livemeeting.com/lrs/8000181573/Registration.aspx?pageName=gprcrzd1lgf2dhh4
 and follow the instructions.
If you have any doubts, please contact me.


On Thu, May 14, 2009 at 12:40 AM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Everything has been really quite 

RE: Silverlight Binding Expressions

2009-05-18 Thread Jordan Knight
I'd be either using a) a stack panel with multiple text boxes of b) 
(prefereably) a view model which supports a LoggedInAsText property, which 
you can do the concats nicely.

A ViewModel is simply a class which is passed in to the DataContext and 
provides nice properties for your UI to bind to, encapsulating the model away 
from your UI  (preventing the UI from having to be moulded to suit the model)...

Have a hunt around for a few MVVM  articles, they are sprouting up more and 
more.

From: OzSilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Asheesh Soni
Sent: Tuesday, 19 May 2009 10:37 AM
To: OzSilverlight@ozsilverlight.com
Subject: Silverlight Binding Expressions

Hello

I have a very trivial problem, but all the solutions to it seem to be a bit of 
an overkill. Just looking for a simple solution

So here's the problem: Bind a Textblock to more than one field (or a string 
and a field)

For example: Textblock Text={Binding FirstName +   + LastName} /
Or, Textblock Text={Binding You are logged in as: + {LoginName}} /

I know the following solutions already:

1. Have two Textblocks with clean and simple bindings.
2. Use a Converter (with ConvertBack for two way binding).
3. Use Xambda (Yeah, I mean a Generic Lambda Converter used in Xaml with a 
Lambda expression)

References for Xambda:
http://www.fikrimvarnet/lestirelim/?p=15http://www.fikrimvar.net/lestirelim/?p=15
http://marlongrech.wordpress.com/2008/02/10/embed-code-in-xaml/

And I know advocates of Designer/Developer work flow will argue that embedding 
complex expressions in Xaml defeats the whole purpose and leads to the bad (or 
good) old days of spaghetti code. But I guess, having trivial code in Xaml (eg 
{FirstName} + {LastName}) shouldn't really be a problem.

Basically, All I need is a built-in, in-line Converter for one-way binding in 
Xaml, without having to create my own one line Converters for such trivial 
transformations.

Any ideas?


Thanks

Soni

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.329 / Virus Database: 270.12.32/2118 - Release Date: 05/16/09 
17:05:00

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Accessing the bindings

2009-05-01 Thread Jordan Knight
Yeah it's pretty sweet, i used it to intercept datacontext changes in my 
project here: 
http://blog.webjak.net/2009/04/16/control-that-can-play-animations-when-the-datacontext-changes/

Basically, you intercept the change, switch to a changing state, then apply 
the change, then switch to a normal state... this means you can flip out a 
control, update the content then flip it back in...

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Miguel Madero
Sent: Friday, 1 May 2009 2:58 PM
To: ozsilverlight@ozsilverlight.com
Subject: Re: Accessing the bindings

Looks like it's not possible (yet). In SL3 we'll have a 
txt.GetBindingExpression()


Thanks Jordan and Stephen :)
On Fri, May 1, 2009 at 2:03 PM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
We can programmatically add a binding doing something like 
textBox.SetBinding() is there a way to Get the Bindings?


--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com/ (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: SDDN Meeting in Sydney. May 5th

2009-04-29 Thread Jordan Knight
And don't forget we are on in Melbourne tonight from 5:30 at the Mirosoft 
offices in Southbank :)

From: ozsilverlight@ozsilverlight.com [ozsilverli...@ozsilverlight.com] On 
Behalf Of Miguel Madero [...@miguelmadero.com]
Sent: Wednesday, 29 April 2009 11:40 PM
To: ozsilverlight@ozsilverlight.com
Subject: SDDN Meeting in Sydney. May 5th

Silverlight Designer and Developer Network
Our next meeting is on Tuesday the 5th of May in Sydney
What's on?
This meeting we will see Chris Anderson (bloghttp://chrisa.wordpress.com/), 
from Peer Placements will be discussing advanced styling in Silverlight for 
both developers and designers. Topics will cover styling strategies, tools, 
advanced xaml techniques, fashions, and a discussion on designing user 
experiences.
Jordan Knight (Bloghttp://blog.webjak.net/) from Readify will run through the 
exciting new features in Silverlight 3, and demonstrate how you might use them 
in a real working reference application. This in depth session will cover 
perspective 3D, pixel shaders, navigation features, out of browser and much 
more. Other concepts like Model-View-ViewModel, dependency injection, unit 
testing and designing template friendly (read designer friendly) applications 
will also be touched upon.
WIN!
Attendees will have the opportunity to win a copy of the full Expression 2 
suite, worth $1000!
When and Where?
The date and time: Tuesday May 5 at 6:00 PM for a 6:30 PM start.
The venue is the Pyrmont Bridge Hotel, Level 2, Pyrmont, NSW. See 
maphttp://www.google.com/maps?f=qsource=s_qhl=engeocode=q=96+Union+Street+Pyrmont+2009sll=37.0625,-95.677068sspn=32.514368,64248047ie=UTF8z=17iwloc=A
 for details.
Attendance is FREE, but please RSVP by entering your details in the 
registration in the registration tool on the site 
(http://www.sddn.org.auhttp://www.sddn.org.au/) or send an email to 
i...@sddn.org.aumailto:i...@sddn.org.au.
Who will this group interest?
The focus of the group is not just on developers. Traditionally developers have 
had great community support, whereas designers not so much… now that 
Silverlight 2 is out we plan to change this.
Silverlight is as interesting for developers as it is for designers. Due in 
part to Silverlight’s excellent separation of design and development concerns 
we have new problems to solve around finding the best ways to work together.
To this end the SDDN will facilitate an ongoing discussion and promote the 
development of ideas and best practices for anyone who works with Silverlight.
To register interest head over to 
http://www.sddn.org.auhttp://www.sddn.org.au/. Use the registration tool in 
the header of the site.

--
Miguel A. Madero Reyes
www.miguelmadero.comhttp://www.miguelmadero.com (blog)
m...@miguelmadero.commailto:m...@miguelmadero.com


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Memory leaks and garbage collection

2009-04-29 Thread Jordan Knight
Just remember to stop animations before removing/hiding controls :)


From: OzSilverlight@ozsilverlight.com [ozsilverli...@ozsilverlight.com] On 
Behalf Of Philip Beadle [philip.bea...@readify.net]
Sent: Thursday, 30 April 2009 11:52 AM
To: OzSilverlight@ozsilverlight.com
Subject: RE: Memory leaks and garbage collection

Binding in Silverlight rocks.  I am building a complicated app using MVVM and 
its going really nicely.  Unit testing is a breeze with MVVM.  And proper .Net 
GC so havent seen any mem leaks.

Regards,
Philip Beadle
Readify | Principal Consultant
Microsoft MVP - ASP/ASP.NET

Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia
M: +61 417 301 024 | E: philip.bea...@readify.net | C: 
philip.bea...@readify.net | W: www.readify.net



The content of this e-mail, including any attachments is a confidential 
communication between Readify Pty Ltd and the intended addressee and is for the 
sole use of that intended addressee. If you are not the intended addressee, any 
use, interference with, disclosure or copying of this material is unauthorized 
and prohibited. If you have received this e-mail in error please contact the 
sender immediately and then delete the message and any attachment(s).
P Please consider your environmental responsibility before printing this e-mail

From: OzSilverlight@ozsilverlight.com [ozsilverli...@ozsilverlight.com] On 
Behalf Of Sam Lai [samuel@gmail.com]
Sent: Thursday, 30 April 2009 11:49 AM
To: OzSilverlight@ozsilverlight.com
Subject: Memory leaks and garbage collection

Hi everyone,

I've been working on a Flex app for a while now, and one of the most
annoying things about it are memory leaks due to objects not being
garbage collected. I'm not doing anything tricky, but I suspect it has
something to do with bindings. The Flex Profiler doesn't always give
enough information to exactly pinpoint it either.

So as I'm about to start another project along similar lines, I'm
wondering if people are experiencing similar issues in  Silverlight,
and how easy they were to resolve and avoid.

Thanks,

Sam

--
Sent from my mobile device

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



SDDN Meeting - Melbourne, 30th April

2009-04-23 Thread Jordan Knight
Silverlight Designer and Developer Network

Our next meeting is on Thursday the 30th of April in Melbourne.

What's on?

This meeting we will see Dave Glover, Developer Platform Evangelist from 
Microsoft give a primer on the new Silverlight 3 RIA Services feature. RIA 
Services aims to bring the client and server portions of your applications 
closer together.

Also this meeting Jordan Knight (http://blog.webjak.net) from Readify will run 
through the exciting new features in Silverlight 3, and demonstrate how you 
might use them in a real working reference application.

This in depth session will cover perspective 3D, pixel shaders, navigation 
features, out of browser and much more. Other concepts like 
Model-View-ViewModel, dependency injection, unit testing and designing template 
friendly (read designer friendly) applications will also be touched upon.

WIN!

Attendees will have the opportunity to win a copy of the full Expression 2 
suite, worth $1000!

When and Where?

The date and time: Thursday April 30 at 5:30 PM for a 6:00 PM start.
The venue is Microsoft Theatre, Level 5, 4 Freshwater Place, Southbank.
Attendance is FREE, but please RSVP by entering your details in the 
registration tool on the site (http://www.sddn.org.au) or send an email to 
i...@sddn.org.aumailto:i...@sddn.org.au.
Pizza will be provided to keep those tummies from rumbling.

Who will this group interest?

The focus of the group is not just on developers. Traditionally developers have 
had great community support, whereas designers not so much... now that 
Silverlight 2 is out we plan to change this.

Silverlight is as interesting for developers as it is for designers. Due in 
part to Silverlight's excellent separation of design and development concerns 
we have new problems to solve around finding the best ways to work together.
To this end the SDDN will facilitate an ongoing discussion and promote the 
development of ideas and best practices for anyone who works with Silverlight.

To register interest head over to http://www.sddn.org.au. Use the registration 
tool in the header of the site. Registering your interest helps us organise the 
meetings (and order the right amount of pizza)!

The Site

If you do not wish to receive mails about SDDN, please send a mail with the 
subject UNSUBSCRIBE to i...@sddn.org.aumailto:i...@sddn.org.au


Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Style checkbox in a custom control

2009-04-23 Thread Jordan Knight
Porbably an ItemsControl if you dont want the list behavior (selection etc)... 
ItemsControl rocks for dynamic stuff :)

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Tatham Oddie
Sent: Thursday, 23 April 2009 8:47 PM
To: ozsilverlight@ozsilverlight.com
Subject: RE: Style checkbox in a custom control

Wasn't my MSN help good enough Steve? :p

For the benefit of others, just use a listbox and let it init the other 
controls for you:

http://alexshed.spaces.live.com/blog/cns!71C72270309CE838!133.entry


Thanks,

Tatham Oddie
au mob: +61 414 275 989, us cell: +1 206 331 5568, skype: tathamoddie, 
landline: +61 2 8011 3982, fax: +61 2 9475 5172
my business: tixi.com.au - Ticketing without the dramashttp://tixi.com.au/

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Thursday, 23 April 2009 8:14 PM
To: ozsilverlight@ozsilverlight.com
Subject: Style checkbox in a custom control

Hey all,

I'm wanting to create a default style for a number of checkboxes that are added 
to a custom control dynamically in code.

I'd like the style to go in the generic.xaml and have found some info on 
applying styles to controls via TemplateBindings, but it doesn't look like I 
can do that in code. (Must be the only thing you have to do in xaml and can't 
do in code??)

I was thinking of opening up a .g.cs file to see how its doing it from the xaml 
but can't find a way to intentionally open a g.cs file. (Have opened them when 
had errors in them)

anyone seen anything on this or done it?

thanks,
Stephen


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.287 / Virus Database: 270.12.3/2075 - Release Date: 04/22/09 
17:25:00

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Perth Silverlight user group meeting (SDDN)

2009-04-20 Thread Jordan Knight
Yep... we have :)

http://www.sddn.org.au/Meetings/20081127/Video.aspx

Grab camtastia or something like that and off you go (there is a free one 
starting with J or something, can't remember the exact name).

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Monday, 20 April 2009 7:04 PM
To: ozsilverlight@ozsilverlight.com
Subject: Re: Perth Silverlight user group meeting (SDDN)

At this stage (unless someone shows up with a video camera, hint hint Ola) it 
probably won't be recorded.

Has anyone had good success with that sort of thing with user groups? I've not 
seen any posted about but then have not really gone looking for them either.

On Mon, Apr 20, 2009 at 12:59 PM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
Sounds great.
Enjoy the event.

Is it going to be recorded? I'd like to learn a bit more on RIA Services.


For people interested in RIA Services, I'd recommend to check the PDF.




Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: SDDN Training day in Adelaide and meetings in Perth, Melbourne and Sydney

2009-04-02 Thread Jordan Knight
This link is for the free Adelaide training event.

Register quick Adelaide peeps.

If you are keen for a little free Silverlight training and you are not in 
Adelaide, why not fly in and make a little holiday out of it... We can all hook 
up after for post course drinks :)

I'll be flying over to help deliver this event with Jason so see you there!

Jordan.

From: OzSilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Jonathan Parker
Sent: Friday, 3 April 2009 11:32 AM
To: OzSilverlight@ozsilverlight.com
Subject: Re: SDDN Training day in Adelaide and meetings in Perth, Melbourne and 
Sydney

http://www.acs.org.au/index.cfm?action=eventarea=9005temID=eventdetailseveID=10133342778230
On Fri, Apr 3, 2009 at 10:30 AM, Asheesh Soni 
asheeshs...@gmail.commailto:asheeshs...@gmail.com wrote:
Haven't been to previous SDDN meets is there any registration required?


On Thu, Apr 2, 2009 at 6:27 PM, Miguel Madero 
m...@miguelmadero.commailto:m...@miguelmadero.com wrote:
 Wow that's great :)
 
 Support procedure: https://www.codify.com/lists/support
 List address: 
 ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
 Subscribe: 
 ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
 Unsubscribe: 
 ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
 List FAQ: http://www.codify.com/lists/ozsilverlight
 Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists


Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Blend 3

2009-03-22 Thread Jordan Knight
Hear hear :)

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Philip Beadle
Sent: Monday, 23 March 2009 9:54 AM
To: ozsilverlight@ozsilverlight.com
Subject: RE: Blend 3

Im loving RIA Services so far.  MIX is my fave conference of all, I feel like 
ive been hit by a truck now but it was worth it.

Big thanx to Shanemo, Kordsy and Scotty, had a blast :)

Regards,
Philip Beadle
Readify | Principal Consultant
Microsoft MVP - ASP/ASP.NET

Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia
M: +61 417 301 024 | E: 
philip.bea...@readify.netmailto:philip.bea...@readify.net | C: 
philip.bea...@readify.netsip:philip.bea...@readify.net | W: 
www.readify.nethttp://www.readify.net/

The content of this e-mail, including any attachments is a confidential 
communication between Readify Pty Ltd and the intended addressee and is for the 
sole use of that intended addressee. If you are not the intended addressee, any 
use, interference with, disclosure or copying of this material is unauthorized 
and prohibited. If you have received this e-mail in error please contact the 
sender immediately and then delete the message and any attachment(s).
P Please consider your environmental responsibility before printing this e-mail

From: ozsilverlight@ozsilverlight.com [ozsilverli...@ozsilverlight.com] On 
Behalf Of Miguel Madero [...@miguelmadero.com]
Sent: Monday, 23 March 2009 9:48 AM
To: ozsilverlight@ozsilverlight.com
Subject: Re: Blend 3
Thanks for the tip, however I'd like to test the new SL toolkit for SL3 and RIA 
Services and the only way, specially for the latter, is to install the SL tools 
for VS. Unfortunately I had to do it on a separate machine.

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.0.238 / Virus Database: 270.11.23/2016 - Release Date: 03/22/09 
17:51:00

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Blend crash

2009-02-15 Thread Jordan Knight
Hey Stephen,

What is the error?

Have you tried attaching VS debugger to Blend to get a better error.

I've not experienced this myself...

Do you have many different converts?

Perhaps you could post a replication project so I can try it on my machine...

Cheers,

Jordan.

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Monday, 16 February 2009 11:34 AM
To: ozsilverlight@ozsilverlight.com
Subject: Blend crash

Has anyone used a Converter on a binding and not have it crash when the file is 
opened with Blend?

I can't have any converters on my bindings at all or Blend dies dramatically. 
I've found a short thread on the Expression Blend forums with other people with 
the same issue. Was wondering if its everyone or just a small number of ppl?

Blend version is v2.1.1760.0. Silverlight v2.0.31005.0

The converters work fine when run from VS2008 or Blend, it's just crashing 
Blend when opened. (I have to remove/rename them to be able to open the file)

cheers,
Stephen

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



RE: Express Expression (Blend)

2009-01-20 Thread Jordan Knight
http://wpfwonderland.wordpress.com/2009/01/19/new-animation-library-for-silverlight-sothink-quicker/

Not sure on the pricing but looks interesting (I can't get to their site though 
hehe)

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Stephen Price
Sent: Tuesday, 20 January 2009 12:18 PM
To: ozsilverlight@ozsilverlight.com
Subject: Express Expression (Blend)

Hey all,

Does anyone know if there is (or is going to be) an Express version of Blend or 
Expression?
I'm doing a presentation next month at the Perth .Net user group (with Ola 
Karlsson) and wanted to promote Silverlight on a budget. Going to show off 
Silverlight development using Visual Studio Express Web edition, cheap LAMP web 
hosting with php backend. Then I realised that Expression Suite 2 is like $999, 
Blend is $500... and I can't find any mention of an Express version.

Scott? Anyone? This would really help get people using it. Maybe a version of 
Blend that doesn't support source control? (...oh, wait.)

thanks,
Stephen

Support procedure: https://www.codify.com/lists/support
List address: 
ozsilverlight@ozsilverlight.commailto:ozsilverlight@ozsilverlight.com
Subscribe: 
ozsilverlight-subscr...@ozsilverlight.commailto:ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: 
ozsilverlight-unsubscr...@ozsilverlight.commailto:ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

No virus found in this incoming message.
Checked by AVG - http://www.avg.com
Version: 8.0.176 / Virus Database: 270.10.9/1900 - Release Date: 19/01/2009 
9:37 AM

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists