Browse by Tags
All Tags »
Tips, tricks, code snippets (RSS)
Tag property is very often used to store a data associated with an object. The simple way to add support for Tag property is to create a base class with the Tag property .I don’t like this solution – the reason is simple .Sometimes I want
Read More...
DataContext Log Property can be used to print generated SQL query or command in the console window as shown below: db.Log = Console.Out; If you want to print the SQL query in DebugView or VS Output window you may use DebugWriter class(by Kris Vandermotten
Read More...
Finding Memory leaks How To: Create an ASP.NET AJAX Style Folder Explorer Tagging feature to be launched in MSDN Library ASP.NET 2.0 Page Lifecycle The very first Apple iPhone prototype from 1983
Read More...
Two engineer from the Switzerland branch of Microsoft Ronnie Saurenmann and Ruihua Jin developed an Outlook clone using WPF, XAML, Expression Blend etc. The online demonstration(XPAB) is available at this url . Check out the 90 pages tutorial about how
Read More...
I found very interesting blog related to development games in Silverlight .I have listed a few posts from the blog that can help you to deeply understand how to develop a simple Silverlight game. Adding Thrust A Better Game Loop Keyboard Input Technorati
Read More...
Here's list of links related to WPF/E WPF/E Downloads: http://msdn2.microsoft.com/en-us/asp.net/bb187452.aspx WPF/E SDK: http://www.microsoft.com/downloads/details.aspx?FamilyID=c744cbb8-d4d9-4bf9-ad5c-eef36e064911&displaylang=en MSDN Dev Center:
Read More...
Jon Galloway shows how to create REG file that adds "Delete SVN Folders" to the context menu for folders. When you select it, it deletes all folders called .svn inside the folder and it's children (it does nothing if the project's not under SVN). Technorati
Read More...
Jason Haley shows how to develop a simple addin for Reflector. Technorati tags: reflector , dotnet
Read More...
DataGridView supports the special mode (Virtual Mode). The basic idea is that inside the control not stored any data. In given below example of the primitive electronic table, the data stored in the hashtable.The electronic table has a large amount of
Read More...
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...
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...
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...
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...
This article explains how to manage database of ASP.NET 2.0 Membership & Role services in non-ASP.NET context. Technorati tags: database , dotnet , asp.net
Read More...
Internet Explorer 7 introduces a unified approach to RSS. The good thing about it, is its availability for developers to consume the RSS feeds of the end-user, for example to build a custom RSS aggregator. Programs like the Windows Sidebar in Vista, the
Read More...