alkampfer on November 28th, 2008

I need a program that send by email some reports each day to a certain number of recipients. The first thing I need to solve is the format of the report, a pdf could be a good thing, but I need to find a library to generate pdf etc etc. The best solution is to [...]



kick it on DotNetKicks.com

Continue reading about Create a report in excel 2007 with Open Xml SDK 1.0

alkampfer on November 22nd, 2008

If you still work with windows forms and cannot move all of your projects to WPF, you probably gets annoyed by the limitation of the standard BindingList<T> included in the framework. In an old post I showed how can you create a specialized BindingList<T> to support generic Find() thanks to reflection, but this is not [...]



kick it on DotNetKicks.com

Continue reading about Extend BindingList with filter functionality

alkampfer on November 20th, 2008

When you work with domain model your domain objects become more complex than a simple containers for table values. This makes somewhat problematic using these object directly with the UI, especially when you use native binding. Let’s make an example, I have this object called Domain

As you can see the Domain class has a [...]



kick it on DotNetKicks.com

Continue reading about Impedence between domain objects and Ui Layer

alkampfer on November 19th, 2008

Some time ago I read this post that speaks about dynamic query library. I downloaded the code sample, it is interesting, but is bound to Linq to Sql, now I need an implementation of a Dynamic Linq Query generator. Since I already worked in the past with expression parser and I have some generic Infix [...]



kick it on DotNetKicks.com

Continue reading about Dynamic Linq expression generator

alkampfer on November 18th, 2008

If you work with Windows Forms you cannot live without binding , but something is missing from the base structure. I want to create a simple form with a BindingSource, then bind a list of object to a grid and some textboxes to create a master detail form, moreover I set up a simple [...]



kick it on DotNetKicks.com

Continue reading about Missing RemovedItem from BindingList and BindingSource