Welcome to Devintelligence.com Sign in | Join | Help

.Net Adventures

In .Net we trust
CouponOK.com - Free Web Hosting and Domain Coupons for webmasters


January 2007 - Posts

Validating properties in a PropertyGrid control
The easiest way to validate a certain property is using the PropertyValueChanged event.The code bellow shows how to limit the valid range of Age property to be 1-150 using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form1 Read More...
Interesting blog posts
Jon Galloway - Google Personalized Homepage (IG) - Read a post inline David Hayden - Validation Application Block Presentation and New Features - Enterprise Library 3.0 ScottGu's Blog - ASP.NET AJAX 1.0 Released Dmitryr's blog - Finding out the current Read More...
The second CTP of Enterprise Library 3.0 is now available to download
Tom Hollander has posted that the second CTP of Enterprise Library 3.0 is now available to download on CodePlex community site. New In This Release Validation Application Block Near-complete validator library Configuration tool support ASP.NET integration Read More...
Sorting System.Collections.Generic.List<T>
This post shows the sorting techinque using anonymous delegate that can be implemented in any custom type generic lis based on the selected property. For sorting any custom type the class must implement the System.IComparable interface. Now let me assume Read More...
Object Relational Mapping and persistence framework for .NET 2.0
DataBlock is a Object Relational Mapping and persistence framework for .NET 2.0.When working with DataBlock your job should be to create business object that handle the specific business issues instead of writing SQL, juggling with ADO.NET objects or Read More...
How the design time infrastructure works
If you are not familiar with the DataSourceControls and if you don't know how the design time infrastructure works, take a look to the following articles: Data Source Controls - Under the hood (1/4) Data Source Controls - Under the hood (2/4) Data Source Read More...