How the Cider Adorner works
Jim Nakashima gives some insight view how the Cider adorners work.
Jim Nakashima gives some insight view how the Cider adorners work.
Shawn Burke shows how to debug .NET source code in Visual Studio. all you need is to install the Visual Studio 2008 QFE and then follow Shawn’s instructions.
SPARQL has been finally published as W3C recommendation.
Today, Daniel helped my to solve a long standing miracle. For some unknown reason, Vista decided not to support hibernate on my Toshiba m400 anymore. So what to do:
Start the command prompt and type
powercfg -H ON
You won’t see anything on the screen, but when going back to your advanced power potions you will see both, hibernate and hybrid sleep again.
That’s all – and you can send your machine to hibernate again.
Andrew Matthews describes another interesting pattern, which he called Ambient Content Pattern:
“Provide a place to store scope or context related information or functionality that automatically follows the flow of execution between execution scopes or domains.”
Microsoft offers free copies of the following books for download:
Introducing Microsoft LINQ by Paolo Pialorsi
Introducing Microsoft ASP.NET AJAX by Dino Esposito
Introducing Microsoft Silverlight 1.0 by Laurence Moroney
Since I read “Design Patterns. Elements of Reusable Object-Oriented Software” by the GoF the very first time in 1999, I am a big fan of patterns at all. Making heavy use of factory patterns such as the Factory Method or Abstract Factory I came along with a useful pattern we call a Declarative Factory. A Declarative Factory is based especially on the Attribute construct in the .NET Framework and allows you to extend new classes with factory capabilities in a zero-effort manner. The idea behind this pattern is to extend your application with new constructs in form of extensions without touching already existing code. This is possible when your extensions are provided by container objects. The key element here is about the new elements which you are not aware in your code yet.
This pattern is much like a Abstract Factory, however, there is no need to create a concrete Factory class.
Also you add factory capabilities to a new class by only adding the corresponding attribute.
First we have a look at the actual container object. Here we tell the container object to provide factory capabilities to create ConcretePrototype instances. The FactoryContainer can be any class we are using within our application, as example this could be a sub-class of ListViewItem in a WPF-based application.
[DeclarativeFactory(typeof(ConcretePrototype))] public class FactoryContainer { ... }
The declaration of the ConcretePrototype is also straightforward. The IPrototype is the common interface for all prototypes that can be created by the Declarative Factory. If this pattern is applied to a WPF-based object this could also something like a DependencyObject or a FrameworkElement. In this case the DeclarativeFactory cold provide factory capabilities for the corresponding types.
public class ConcretePrototype : IPrototype
The attribute itself looks as following:
The magic now, lies in the way how to invoke the factory method provided by the Declarative Factory.
FactoryContainer container = new FactoryContainer(); DeclarativeFactoryAttribute[] a_attrib = (DeclarativeFactoryAttribute[]) container.GetType().GetCustomAttributes( typeof(DeclarativeFactoryAttribute), true); IPrototype prototype = a_attrib[0].Create() as IPrototype;
You just resolve the factory attribute and call the factory method. Very easy, isn’t it? However, you have to keep a few things in mind about this pattern. First of all, it makes no sense if you already know about the class you want to instantiate. So, there is absolutely no reason to apply the Declarative Factory to the class itself. In this case you should definitely stay with common patterns such as the Factory Method. If you are going to make you project extensible where new types are provided through container objects this pattern appears to be very handy .
The example source code for this pattern is licensed under MS-Pl.
After reading about dzone in Matthias’ blog, I signed up an account there and published my first article. Having only a very quick look on this portal, it looks to me like one of those few, providing additional value.
web.config files can be easily extended using the configSection tags.
A brief overview is given by Aaron Johnson on his blog, referring the original MSDN documentation.
Also another brief summary by Dieder Tierman and a very good How-to on MSDN how to write own section handlers.
This update finally supports the new file formats of Office 2007 on your mobile device:
To allow Windows Mobile users to work with Office documents created in the Open XML formats, Microsoft has developed an upgrade for Word Mobile, Excel Mobile, and PowerPoint Mobile applications. This upgrade to the Office Mobile applications allows viewing and editing of Word documents and Excel workbooks and viewing of PowerPoint slideshows created by using Microsoft Office 2007.
Other improvements include:
• Enhanced viewing experience for charts in Excel Mobile.
• Ability to view SmartArt in PowerPoint Mobile.
• Ability to view and extract files from compressed (.zip) folders.
The update need approximately 7 Mb on your device. Therefore, I would recommend using a memory card for the installation.