Search Results

3
votes

Plug In Design for .NET App

I would recommend you take a look at the Managed Add-In Framework that shipped with .NET 3.5. The Add-In team has posted some samples a …
1
vote

WebBrowserControl Scroll to Bottom

This is probably overkill, but you could also invoke script on the WebBrowser control and then use the scroll properties of the body tag. Or the scrollTo method of the window. To invoke scr …
0
votes

Is WindowsFormsHost fit for purpose (.net WPF hosting WinForms)?

As @Kent Boogaart mentioned, I've run into the situatio …
3
votes

Race Condition Analysers for .NET

I haven't ever used this tool, but it looks like TypeMock has a tool called Racer that can handle this. Roy Osherove blogged about it …
0
votes

Upgrading from .NET 1.1 to .NET 2.0, what to expect?

I would encourage you to do the upgrade - Visual Studio 2005 as well as .NET 2.0 provides a lot of benefits over 2003 and .NET 1.1. Things I have noticed if you do a straight conversion (i. …
1
vote

Users of Gallio, what Advantages and Disadvantages have you experienced using this Tool?

On the advantages front, integration with everything is quite nice :) Seriously, I'm a huge fan of the experimental integration with Visual Studio Team System (screenshots …
7
votes

What is the best book for learning WPF?

I've a big fan of WPF Unleashed by Adam Nathan myself. The book is in color, which really helps for such a graphical …
1
vote

Blocking dialogs in .NET WebBrowser control

This is most definitely hacky, but if you do any work with the WebBrowser control, you'll find yourself doing a lot of hacky stuff. This is the easiest way that I know of to do this. You ne …
4
votes

C# VB.NET Conversion

Check out Code Converter by Telerik. …
1
vote

How can I create my custom Shell Context Handlers for Windows?

As the prior comments mention, it isn't the best idea to write shell extensions in managed languages, but I thought I'd share an Open Source project that is doing just that :) …
0
votes

Why is try {…} finally {…} good; try {…} catch{} bad?

The problem with try/catch blocks that catch all exceptions is that your program is now in an indeterminate state if an unknown exception occurs. This goes completely against the fail fast rule - y …
33
votes

What are the most relevant OSS projects for .NET?

The most relevant ones to me are the ones I use the most and are the most valuable to me I suppose. Unit Testing Frameworks: NUn …
3
votes

Visual Studio debugger tips & tricks for .NET

Tools -> Attach To Process - easy to forget, but with it I can debug script in web pages, managed code loaded up in another process (think an add-in model), or even unmanaged code. Be careful with …