Site: http://dotnet.org.za/ernst/archive/category/1230.aspx Link: http://dotnet.org.za/ernst/rss.aspx?CategoryID=1230
by Ernst Kuschke via Ernst Kuschke : C# on 8/2/2007 10:23:00 AM
Morfik's has this to say about their WebOS AppsBuilder (quite a mouthful): WebOS AppsBuilder brings extreme simplicity to the design of sophisticated AJAX applications without compromising their functionality. You don't need to write any HTML, XHTML, XML, JavaScript or CSS. It has never been easier to create highly interactive web sites and applications - and you don't even have to learn a new language or new technologies to do it! Their (patent pending) JavaScript Synthesis Technol ...
[ read more ]
by Ernst Kuschke via Ernst Kuschke : C# on 4/3/2007 10:39:00 AM
By now most of you are probably aware that the gotdotnet workspaces will be phased out by July 2007, pretty much to be replaced by CodePlex, an open-source project hosting site. Some features of CodePlex: - The CodePlex application is written entirely in C# and ASP.NET 2.0 - The web apps are written in pure ASP.NET (not using SharePoint) - Virtually all of the code was written test-first (using TDD) - cool!!! - It uses the released version of TFS; they have not touched ...
by Ernst Kuschke via Ernst Kuschke : C# on 3/26/2007 12:46:00 PM
Craig has been posting on the topic a bit lately, and innitially I wanted to respond to his latest post with a comment; it got so long that it warranted a post on itself. For those uninitiated ones, Linq-to-Sql is what used to be called DLinq - this will replace the ADO.NET code we currently use to access data in a relational database. It's important to note that Linq-to-Sql only supports SQL Server as a database. There are many reasons for this, one being that SQL code is generated ...
by Ernst Kuschke via Ernst Kuschke : C# on 1/17/2007 10:13:40 AM
There's been a need for this for some time, and the guys have finally included this new BCL type in the latest Orcas CTP. (Most people don't know that a similar type has always been present in the J# runtime library (vjslib.dll) as java.math.BigInteger!) Go here to read more on this type, or to leave your comments. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it! ...
by Ernst Kuschke via Ernst Kuschke : C# on 8/29/2006 9:59:00 AM
In a recent (heavily customised) implementation of MSCRM for a call centre I have had the requirement to set the state of a Phonecall Activity to "Completed", depending certain actions by the user on the frontend.MSCRM exposes itself via the "CrmWebservice"- and "MetadataService" web services. All the CRM entities, like Contact, Incident, etc. are extensions of the BusinessEntity base class, and so it is also for Activity, from which Phonecall derives. Ussually when ...
by Ernst Kuschke via Ernst Kuschke : C# on 8/2/2006 11:43:00 AM
For some pretty cool feeds on C# bloggers. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it! ...
by Ernst Kuschke via Ernst Kuschke : C# on 7/31/2006 10:00:00 AM
I get asked how to do this many times; here are two quick methods to serialize as well as deserialize objects in .NET:private static string SerializeObject(object o){ StringWriter sw = new StringWriter(); new XmlSerializer(o.GetType()).Serialize(sw, o); return sw.ToString();} private static T DeserializeObject<T>(string xml){ return (T)new XmlSerializer(typeof(T)).De ...
by Ernst Kuschke via Ernst Kuschke : C# on 6/5/2006 7:02:00 PM
I was going through the DOTNET-CLR list earlier this morning, when I saw a post where someone needed simple help: "I'd like to convert the Dictionary Values to a List<> anybody know any magic .net classes/code?" That sounded like something I could whip up in a few seconds. Fired up VS2005, New C# Console App, and with simply the help of Intellisense I had the following lines in a matter of seconds: Dictionary<int, int> dic = new Dictionary<int, int>();List<KeyValuePair<i ...
The content of the postings is owned by the respective author. CSharpFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on CSharpFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.