Archive for February 22nd, 2010

Custom Skin/Chrome for Adobe AIR Application(s)

This is a nice tutorial from Ryan Stewart which shows how to create custom chrome for your Adobe AIR applications. Enjoy !

Tags: , , ,

Leave a Comment

Reading and Writing Window Registry in C#

Since its introduction in Windows 95, the registry has more often than not intimidated developers. The registry acts as a central repository of information for the operating system and the applications on a computer. When you store information in the registry, choose the appropriate location based on the category of information being stored. Here is [...]

Tags: , ,

Leave a Comment

Indenting XML using C#

There are times when you need to display an XML string to be able to view in a good format. // Pretty XML format with consistant indentation. public static String prettyXMLPrint(String XML) { String Result = “”; MemoryStream msStream = new MemoryStream(); XmlTextWriter xmlWriter = new XmlTextWriter(msStream , Encoding.Unicode); XmlDocument xmlDocument = new XmlDocument(); try [...]

Tags:

Leave a Comment