Packing List for the Pocket PC in the .NET Compact Framework
This article demonstrates a pocket pc packing list application to help you track moving inventory. The application is written in C# for the .NET Compact Framework (1.1) and shows you how to overcome some limitations in the framework such as scrolling a form and searching nodes in XML....
[Team System] Great Tool for Modifying Process Template
I found a great tool for those of you who wants to modify the process template - Process Template Editor from imagiNET, and it's free. It won't see to all your needs, but it's a great help and the best tool I've seen so far to get you started. You still need to do some manual XML ed......
[Updated (1.8)] Commonly Used .NET Coding Patterns in CodeDom
The latest update (1.8) of my article Commonly Used .NET Coding Patterns in CodeDom is now out.Changes made since 1.7: The Code Access Security Decorator Patterns have been added. The Assembly Information Pattern has been added. Security demand added to GetObjectData in the Serializable Type P......
Filtering IIS7 Events in the new Eventlog
The new Event Viewer in Vista allows you to specify a view file that filters the events that are shown in the Event Viewer. I attached the view file that shows only IIS7 eventlog entries in the System and Application log. Hope this is useful. How to invoke Event Viewer with the view: EVENTVWR /v:ii......
MassDataHandler: generate test data to help with data layer testing
Yet another tool to help with integration tests against the database layer(got this by email: "I wanted to let you know about an open source tool I created to help unit test the data access layer. http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=MassDataHandler This tool uses know......
Google Code Search
At the moment Google appears to be spidering CVS repositories and archives (ZIP files etc.) It surely won't be long before Subversion is included in that list since that is what Google Project Hosting uses! Lots more info on Google Blogscoped including: Additional to the regular web interface, Go......
Authorization Rules
ScottGu posted an article showing how to add authorization rules to business and data layers. In his sample code, he shows how easy it is:using System;using System.Security.Permissions;[PrincipalPermission(SecurityAction.Demand, Authenticated = true)]public class ......