Wednesday Apr 4, 2012 at 08:07 PM | Posted by: praveen
At the beginning of March, we released our road map for the second quarter of 2012. It lets developers know exactly what to expect in Volume 2, for every product, on every platform. By unveiling what’s coming, developers will be able to anticipate what new features they’ll be able to add to their own projects. If they don’t see a feature they would like, they can always request o... [More]
Wednesday Jul 27, 2011 at 08:18 PM | Posted by: clayb
Syncfusion’s Windows Forms FAQ played a significant role in introducing Syncfusion to the .NET community. Both Syncfusion and .NET were new in 2001 and 2002 as Syncfusion was building its first products. Early on, it was decided that one way to publicize the Syncfusion brand was to produce a FAQ that would serve as a resource for the .NET community. FAQs for earlier technologies, such as MF... [More]
Wednesday Nov 3, 2010 at 12:15 AM | Posted by: chadc
Please join our partner Wintellect on Thursday, December 16 from noon till 5:00 p.m. EST for T.E.N. with Wintellect (Tenth “Anniversary” Educational .NET Event) – a complementary virtual training event.  Three sessions during T.E.N. - .NET Nuggets with Jeffrey Richter, Advanced Breakpoints with John Robbins, and Advanced Silverlight with Jeff Prosise – will be delivered via Microsoft Live Mee... [More]
Friday Jul 10, 2009 at 09:31 AM | Posted by:
Legacy applications, which are to be migrated to a new platform (WPF, Silverlight, etc.) require leveraging the underlying business layers too. We have an IQueryable interface implemented for DataTable in System.Data.DataSetExtensions. There are a couple of extension providers present in the .NET Framework itself: DataTableExtensions EnumerableRowCollectionExtensions Data Table Extensio... [More]
Thursday Jul 9, 2009 at 10:39 AM | Posted by:
Generating dynamic LINQ expressions needs a bit of understanding on the IQueryable interface. Check out Matt Warren's series of posts on implementing the IQueryable interface –> LINQ Links. The strong drive for this post is that everything is strongly typed; of course we have the Dynamic LINQ library that comes in the MSDN sample, but that comes with the overhead of generating strings t... [More]
Thursday Jul 9, 2009 at 10:35 AM | Posted by:
With the Vol. 3 release, the much awaited grouping and summaries support for the WPF grid will be out. This support works with the CollectionView grouping mode. The summaries are not a part of CollectionView grouping logic, so we included high-level functions that will calculate the summaries of a group dynamically using LINQ methods. This only has the constraint of using IEnumerable<T> im... [More]
Tuesday May 26, 2009 at 01:56 PM | Posted by: clayb
In .NET 2.0 and Windows Forms, you can invoke an asynchronous call to a method with no arguments using code like: myControl.BeginInvoke(new MethodInvoker(AnotherMethod)); In .NET 3.0 and WPF, the equivalent code would be: myControl.Dispatcher.BeginInvoke(new Action(AnotherMethod), null); One place asynchronous calls are useful is in event handlers. In an event handler, you can make an asynchro... [More]

Tag cloud