(jgoldb) As you know the .NET Framework 4 is now available and can be downloaded from here and the .NET Framework 4 Client Profile is available from here.
Tag: Development
Parallel Tasks in .NET 4.0 (Part II) – Methods that Return value
(Suprotim Agarwal) In one of the previous articles Parallel Tasks in .NET 4.0, we explored a set of new API’s called the “Task Parallel Library (TPL)” which simplifies the process of adding parallelism and concurrency to applications. We used the System.Threading.Tasks.Parallel.Invoke() to call meth
WPF TextBlock
(Mahesh Chand) A TextBlock control in .NET 3.5 provides a lightweight control for displaying small amounts of flow content. This tutorial demonstrates how to create and use a TextBlock control in WPF using XAML and C#.
Using CFThread Inside A ColdFusion Query Loop
(Ben Nadel) This morning, Sebastiaan and I have been having some great conversations about various ColdFusion features. When discussing CFThread, he asked whether or not query values should be explicitly passed into a CFThread tag (via its attributes), or if the CFThread tag can simply reference the
Easy QueryBuilder – A User-Friendly Ad-Hoc Advanced Search Solution
(Bing Wang) One of the projects that I have been working on was to provide a user interface to manage corporate security information such as personnel, Platform, LoginID, etc. I have designed and implemented a smart data search engine to filter various data based on queries from users. QueryBuilder
ParallelExtensionsExtras Tour – #8 – ReductionVariable
(toub) The new .NET 4 System.Threading.ThreadLocal is quite useful when you need per-thread, per-instance storage. This is in contrast to the fast ThreadStaticAttribute, which supports only per-thread storage (in .NET 4, ThreadLocal actually layers on top of ThreadStaticAttribute to provide t
JavaScript Intellisense Improvements with VS 2010
(Scott Guthrie) Today’s blog post covers some of the nice improvements coming with JavaScript intellisense with VS 2010 and the free Visual Web Developer 2010 Express. You’ll find with VS 2010 that JavaScript Intellisense loads much faster for large script files and with large libraries, and that i
WPF TextBox
(Mahesh Chand) This article demonstrates how to create and use a TextBox control in WPF using XAML and C#.
Lazy Loading jQuery Collapsible Panel in ASP.Net Using JSON
(Satheesh Babu) One of my previous article Building Collapsible Panel Control using jQuery in ASP.Net Page discussed the basics of collapsible panel and building a simple collapsible panel with jQuery library in an asp.net page. The collapsible panel in my previous article is fully loaded with the
Parallel Tasks in .NET 4.0
(Suprotim Agarwal) In .NET 4.0, we have a set of new API’s to simplify the process of adding parallelism and concurrency to applications. This set of API’s is called the “Task Parallel Library (TPL)” and is located in the System.Threading and System.Threading.Tasks namespaces.
