Geeks With Blogs

@cnrussell
  • cnrussell wrote a post on my blog about my friend Ursula Eilers (Microsoft MVP, Office System) - Office expert about 1255 days ago
  • cnrussell went to "The MSDN Southern Fried Roadshow" in Atlanta, GA on Dec 08, 2009. Cool stuff! about 1258 days ago
  • cnrussell went to "The MSDN Southern Fried Roadshow" is a developer/architect training through the southeast on Dec 08, 2009 Atlanta. Cool stuff! about 1258 days ago
  • cnrussell Community Credit submission approved. I earned points toward a geeky prize becuase I contributed to the development community on web. about 1258 days ago

News


Catherine Russell Architect, President of "Women In Information Technology" Group Silverlight There are 26 entries for the tag Silverlight
Microsoft: Our strategy with Silverlight has shifted. HTML5 is a priority instead.
Microsoft: Our strategy with Silverlight has shifted At Microsoft’s Professional Developers Conference (PDC) this week, the future of Silverlight is one topic that has gotten short shrift. There have been no sessions about Silverlight 5 and only one mention of Silverlight in the kick-off keynote. But there were plenty of mentions of HTML 5 and Microsoft’s commitment to that technology, not only in the next version of its Internet Explorer browser, but also as the glue “facilitating a level of independence ......

Posted On Tuesday, November 2, 2010 10:19 AM

The State of Data Access in Silverlight
There is a great article about Data Access in Silverlight by Shawn Wildermuth came out yesterday. The basic story of how Data Services works is that it takes a context object from a LINQ provider and exposes all the IQueryable endpoints as REST resources that can be queried. This works well in creating a place to execute queries and post/put/delete changes. The Silverlight (and .NET) client library allows you to just issue LINQ queries to the data service. Ability to create tracked projections from ......

Posted On Monday, February 22, 2010 7:48 AM

Silverlight 4 Networking
Technorati Tags: Silverlight 4 SL4Networking * Silverlight Beta 4 Networking. Part 8 - TCP Sockets * Silverlight 4 Beta Networking.… HTTP and Basic Authentication * Silverlight 4 Beta Networking. Part 4 - Cross Domain HTTP * Silverlight 4 Beta Networking. Part 2 - RSS,ATOM,JSON * Silverlight 4 Beta Networking. Part 7 - HTTP & Forms Auth * Silverlight 4 Beta Networking. Part 5 - HTTP Methods/Stacks * Silverlight 4 Beta Networking. Part 3 - HTTP POST * Silverlight 4 Beta Networking. Part 1 - WebClient ......

Posted On Sunday, February 21, 2010 9:41 PM

Daniel Mellgaard Frost interviewed Shawn Wildermuth about Silverlight and WPF
Technorati Tags: Silverlight,WPF Daniel Mellgaard Frost and Shawn Wildermuth in Sweden for OreDev Daniel Mellgaard Frost interviewed Shawn Wildermuth about WPF, Silverlight features and data services. To see the interview go to: http://channel9.msdn.com/po... ......

Posted On Saturday, December 12, 2009 2:00 PM

Silverlight: How Should I architect my Silverlight App?
Technorati Tags: Silverlight Silverlight: How Should I architect my Silverlight App? Every case is different, of course. But, the general rules are following. Focus on writing reusable code. We should write code that others will use in other projects you'll find yourself maximizing the reuse and writing better code. We should avoid putting the same code in more than one place. Share your code. Split the code into separate (DLL) projects and separate them along technology lines. For example, a root ......

Posted On Saturday, December 12, 2009 9:49 AM

Play Sound in Silverlight Using MediaElement
Technorati Tags: Silverlight If you want to play music or a short sound clip in Silverlight here is what you need to do: 1. Your sound file First, make sure you sound file is MP3 or WMA format as other formats are not supported.Save your file to ClientBin folder (where your xap file gets coppied when buiding the project). If you dont want to store your file to the ClientBin folder do this: from Visual Studio right click on the sound file and select Properties. Now in Properties window change Build ......

Posted On Friday, December 11, 2009 5:29 PM

Working With The Webcam From Silverlight 4
Technorati Tags: Silverlight Working With The Webcam From Silverlight 4 In this post Gill Cleeren is looking at another new feature in Silverlight 4 which is the support for webcams and microphones. Silverlight 4 gets support for microphones and webcams. It has access to the raw streams for both. The added support opens a lot of opportunities for new types of applications. For example, it becomes possible to write an application that reads barcodes of products you hold in front of the webcam, scans ......

Posted On Friday, December 11, 2009 10:43 AM

Why Silverlight is the future
Technorati Tags: Silverlight Why Silverlight is the future This article was written by Rockford Lhotka several month ago. But, all the concepts are still relevant to day. This is just a great article. Silverlight, and the reason it almost instantly gains traction in any conversation with clients, is that it is independent of Windows. They like the idea that it works across Windows versions without worrying that Microsoft will fix some Windows thing and break their app. Silverlight gives the option ......

Posted On Friday, December 11, 2009 10:25 AM

Silverlight 4's Printing Support
Technorati Tags: Silverlight Shawn Wildermuth explaning how it works. The Silverlight 4 printing support allows to specify a XAML tree to print. We starts with the PrintDocument class. The StartPrint/EndPrint events are called before and after and are mostly used for setup/teardown of print elements. The Print method starts the print process and asks the user to specify a printer. After the printer is choosen, the print system calls the PrintPage event sending in printer specs determined from the ......

Posted On Friday, December 11, 2009 10:04 AM

Building the Time Slider control for your Hulu inspired SilverLight video player
Technorati Tags: Silverlight This is series of building a Hulu inspired video player. In this tutorial they are building the slider time display control. They took the static design of UI design 1- Replace a slider of type hSlider 2- Replace the design elements View all parts of the tutorial Part 1 – Building a Play-Pause control Part 2 – Loading external video Part 3 – Building a Progress Bar Part 4 – Building a Download Progress Bar Part 5 – Building a Volume Control Part 6 – Building the Time ......

Posted On Friday, December 11, 2009 9:45 AM

WCF NET.TCP Protocol in Silverlight 4
Technorati Tags: Silverlight,WCF WCF NET.TCP Protocol in Silverlight 4 Silverlight 4 beta has been released and it has many new features. One of the most important features is net.tcp binding support. Now in Silverlight 4 we can communicate with WCF web service using net.tcp protocol. If I can choose the one most important feature in Silverlight 4 beta that can kill WPF apps I will choose the net.tcp support. One of the major performance improvements in Silverlight was the possibility to add binary ......

Posted On Friday, December 11, 2009 9:39 AM

Deploying Your Silverlight and WCF RIA Services Application
Technorati Tags: Silverlight In this article Tim Heuer concentrates his attention on RIA Services deployment. "So you’ve been playing around with Silverlight and WCF RIA Services (the artist formerly known as .NET RIA Services) and you are ready to deploy. You’ve been living in your happy Visual Studio environment, perhaps even relying on the built-in web server (a.k.a. Cassini) to serve up your pages/XAP to test. All has been well, you’ve done your testing and you are ready to publish to your server. ......

Posted On Friday, December 11, 2009 9:33 AM

Mike Taulty Video Series on PRISM for Silverlight 3
Technorati Tags: Silverlight,PRISM Mike Taulty has published an excellent series of screencasts illustrating some of the ideas found in "Prism" or the "Composite Application Guidance" from the Patterns and Practices team that can be used to build Silverlight applications in a way that lends itself to testability and modularity. To learn more go to : http://www.linkedin.com/new... ......

Posted On Friday, December 11, 2009 9:28 AM

Linked In Talk - “Beyond Silverlight with WPF” with Mike Taulty
Technorati Tags: Silverlight,WPF Linked In Talk - “Beyond Silverlight with WPF” with Mike Taulty Mike Taulty spoke for the Linked In .NET User Group via Live Meeting. He showed a bunch of different items and a number of usefull links: “WPF Airlines” Logical Pixels Tiled image brushes Tiled geometry brushes Tiled visual brushes Path based animations 3D Cube with ambient light and spotlights 2D on 3D integration Documents HTML Frame Control Ink and Gestures Code - Ink and Gesture Code - Speech Unified ......

Posted On Friday, December 11, 2009 1:31 AM

This latest version of Silverlight 4 delivers hundreds of features and controls.
Technorati Tags: Silverlight Silverlight 4 Beta Information On November 18, 2009, at the Professional Developer’s Conference in Los Angeles, Microsoft Corp. unveiled a Beta version Silverlight 4. This latest version delivers hundreds of features and controls that, when combined with the continued innovation in Microsoft’s world-class tools for designers and developers — Microsoft Visual Studio and Microsoft Expression Blend – present the leading edge in rapid, powerful application development. With ......

Posted On Friday, December 11, 2009 1:24 AM

6 Silverlight 4 Beta Hands On Labs
Technorati Tags: Silverlight 6 Silverlight 4 Beta Hands On Labs are available on: http://silverlight.net/lear... ......

Posted On Friday, December 11, 2009 12:22 AM

Silverlight 4 Beta Toolkit
Technorati Tags: Silverlight Silverlight 4 Beta is out - and the Toolkit has it covered! [Silverlight Toolkit November 2009 release now available for Silverlight 4!] Stuff like bi-directional text, web cam and microphone support, a RichTextArea control, clipboard access, ICommand, an elevated-trust model, printing, notifications, right-click, and more! To read the whole article with examples go to:http://blogs.msdn.com/de... ......

Posted On Thursday, December 10, 2009 11:56 PM

Steven Sinofsky, Scott Guthrie and Kurt DelBene are showing amazing new features
Technorati Tags: Siverlight,SharePoint Steven Sinofsky, Scott Guthrie and Kurt DelBene are showing amazing new features: hardware innovations; windows 7; developing Internet explorer; silverlight 4;office, outlook social connector and sharepoint 2010 beta. To view the video go to : http://microsoftpdc.com/Ses... ......

Posted On Thursday, December 10, 2009 11:50 PM

Microsoft MIX10 - 3 day conference for web designers and developers. March 15-17th, 2010, Las Vegas
Technorati Tags: MIX On MIX conference will cover "Using Microsoft Silverlight 4 to Create Dynamic SharePoint 2010 User Experiences" by Paul Stubbs The convergence of Silverlight 4 and native support for Silverlight in SharePoint 2010 offers an incredible opportunity to design and deploy rich and dynamic Internet applications. Silverlight 4 Boot Camp by John Papa In this half-day workshop, we can learn the skills necessary to create powerful Silverlight 4 applications. We will start with basic platform ......

Posted On Thursday, December 10, 2009 10:10 PM

"5 Minute Overview of MVVM in Silverlight" Cool article by JohnPapa
Technorati Tags: Silverlight,Application Architecture and Design Strategies,Tutorials,WPF 5 Minute Overview of MVVM in Silverlight Model-View-ViewModel ( MVVM ) is a pattern to use with Silverlight and WPF. john gives short explanation of MVVM MVVM works well with XAML based applications is because of the powerful XAML binding features. This allows the View to be separated from the data and the logic. The View can be designed in Expression Blend while the ViewModel can be developed in Visual Studio ......

Posted On Thursday, December 10, 2009 10:01 PM

"5 Minute Overview of MVVM in Silverlight" Cool article by JohnPapa
5 Minute Overview of MVVM in Silverlight Model-View-ViewModel ( MVVM ) is a pattern to use with Silverlight and WPF. john gives short explanation of MVVM MVVM works well with XAML based applications is because of the powerful XAML binding features. This allows the View to be separated from the data and the logic. The View can be designed in Expression Blend while the ViewModel can be developed in Visual Studio .NET. It allows for the presentation to be separated easily. A View is a class that represents ......

Posted On Thursday, December 10, 2009 9:58 PM

The MSDN Southern Fried Roadshow is a developer/architect training through the southeast on Dec 08, 2009 Atlanta
Technorati Tags: Application Architecture and Design Strategies,Silverlight,Para... Programming,Tutorials The MSDN Southern Fried Roadshow is a developer/architect training through the southeast, presented by technology evangelists Chad Brooks, Glen Gordon and Brian Hitney with Microsoft. Dec. 8 2009. Introduction to ADO.NET Data Services The new wave of Web applications are built on AJAX and Microsoft Silverlight. We learn how ADO.NET Data Services enables applications to expose data as a REST-based ......

Posted On Thursday, December 10, 2009 9:37 PM

Silverlight 4 Training Course
Technorati Tags: Silverlight,Tutorials Silverlight 4 Training Course The Silverlight 4 Training Course includes hands-on-labs, a video and a whitepaper designed to help you learn about the new features in Silverlight 4 focusing on three major areas: Enabling Business Application Development, Empowering Richer Experiences and Moving Beyond the Browser. Some of the new highly anticipated features include Printing, WebCam and Microphone support, custom right-click, rich text, HTML support and access ......

Posted On Thursday, December 10, 2009 3:56 PM

New to Silverlight?
Technorati Tags: Silverlight Microsoft Silverlight helps us to create rich web applications that run on Mac OS, Windows, and Linux. On this site we can get an overview about silverlight, view samples, video tutorials and get info about silverlight books. http://silverlight.net/ ......

Posted On Thursday, December 10, 2009 3:55 PM

What's new features, enhancements in Silverlight 4?
Technorati Tags: Silverlight Silverlight 4 Beta enhances the building of business applications, media applications.New features include printing support, significant enhancements for using forms over data, full support in the Google Chrome web browser, WCF RIA services, modular development with MEF, full support in Visual Studio 2010, bi-directional text, web camera and microphone support, rich text editing, improved data binding features, HTML support, MVVM and commanding support, new capabilities ......

Posted On Thursday, December 10, 2009 3:47 PM

Silverlight 4 Beta on MSDN
Technorati Tags: Silverlight Silverlight 4 Beta is already accessible on MSDN. http://msdn.microsoft.com/e... ......

Posted On Thursday, December 10, 2009 3:26 PM

Copyright © CatherineRussell | Powered by: GeeksWithBlogs.net | Join free