Custom Skin/Chrome for Adobe AIR Application(s)
filed in Adobe Flex on Feb.22, 2010
This is a nice tutorial from Ryan Stewart which shows how to create custom chrome for your Adobe AIR applications. Enjoy !
filed in Adobe Flex on Feb.22, 2010
This is a nice tutorial from Ryan Stewart which shows how to create custom chrome for your Adobe AIR applications. Enjoy !
filed in C# on Feb.22, 2010
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 [...]
filed in C# on Feb.22, 2010
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 [...]