By tag: HowTo
0
kicks
5 Minute Tutorial on Managed Extensibility Framework (MEF)
A quick, to the point tutorial on exposing and consuming a plugin architecture created with MEF.
0
kicks
LINQ Your Typed DataSets
Ever needed to perform an INNER JOIN on a pair of DataTables? Would you like to do so in a completely type-safe manner? Boy do I have the technique for you using Typed DataSets and LINQ!
0
kicks
How to get remote debugging to work successfully
FTA:"After much time, trial and error, I was finally able to get Visual Studio's remote debugging features to work. In my travels around the Internet, no one seems to have compiled all the steps to make the process work successfully and seemlessly into one page, this is my attempt."
0
kicks
Incremental Search (Video tip) in Visual Studio
CTRL+F is fine and functional, but check out CTRL+I :)
0
kicks
How to disable web.config Inheritance for Child Applications?
Each ASP.NET Web Application has its own configuration file called web.config file.
In fact every directory in ASP.NET application can have one. Settings in each web.config file apply to the directory where its placed, and all the subdirectories of that directory.
This is called Configuration In...
0
kicks
How to easily insert row in GridView with SqlDataSource?
Asp.Net 2.0 GridView control is very powerful control. Developers at Microsoft really did a great job when designing it.
Its like Swiss Army knife for selecting, editing, sorting, paging and displaying data.
Combined with various DataSource controls (ObjectDataSource, SqlDataSource) it helps you e...
0
kicks
Auto-Refresh a SharePoint Page
A quick and dirty technique to auto-refresh a SharePoint page.
0
kicks
Applying Design Patterns - Part I and II
This article is expected to:
[1] Introduce patterns to you in a simple, human readable way
[2] Train you how to really 'Apply' patterns (you can learn patterns easily, but to apply them to solve a problem, you need real design skills)
[3] Provide you a fair idea regarding the contexts for apply...
0
kicks
Virtual Earth 6 Articles and Videos
I've been busy with the release of Virtual Earth 6 this week exploring the new features and making some videos and articles.
A must read for any VE developer is the what's new Article I just finished:
http://www.viawindowslive.com/Articles/VirtualEarth/WhatsnewinVersion6.aspx
I'm very impress...
0
kicks
A Visual Guide to Version Control
A good, "highly visual" overview of Version Control, (a.k.a. Source Control). It also references Subversion command line examples, but the overview applies to most version control systems.
0
kicks
Introduction to Scrum and Agile Development
Recently I gave two days worth of talks introducing an organization to agile management and development with Scrum and XP practices. I've made available the presentations and exercises for the betterment of mankind...or at least to get a few more people familiar with agile development. Included is...
0
kicks
Learn the new NUnit 2.4 Constraint-Based Assert Model
Instead of using a different Assert method for each different type of assertion (e.g.: Assert.AreEqual() for equality comparison, or Assert.IsTrue() for boolean evaluation), the new Constraint-Based Assert Model introduced in NUnit 2.4 utilizes only one Assert method named Assert.That().
0
kicks
NUnit Quick and Dirty Guide
NUnit "Quick and Dirty" Tutorial
In the style of the JUnit Quick and Dirty Tutorial, here's a similar tutorial for NUnit. I'm assuming that you're familiar with C#/.NET, downloaded NUnit and have a development environment all setup for compiling and running C# code.
0
kicks
ASP.NET "How To" Reference
You've had the ASP.NET overview, now you want to dive a little deeper and know how to do "XYZ", but have a hard time finding the answers on MSDN? Check out this collecetion of reference links.
0
kicks
Use Powershell to delete all bin & obj folders
I sometimes need to remove all intermediate & resulting build files from a Visual Studio solution, either due to version conflicts or because of permissions issues. Powershell just made that job a whole lot easier.