views:

43

answers:

3

I want to write a add-in for Visual Studio 2008. It will provide a friend UI to show and edit bitmap image when I'm debugging projects about image process.

I know how to access IDebugger interface in VC6, but I don't know how to do it in VS 2008. And I prefer to C/C++ guide other than C#. Thanks.


I found it: Debugger Object(http://msdn.microsoft.com/en-us/library/aa291605(v=VS.71).aspx)

+1  A: 

Two good links for you:

Creating Visual Studio Add-Ins

How to: Create an Add-In

Leniel Macaferi
+1  A: 

I wrote an article on CodeProject that covers this, among other things. It includes code, and videos of the demos being done. I hope it helps you. It is part of a series on extending both VS 2008 and VS 2010. There are links to all the articles in the series in the introduction (read down after the "how to present this" material.)

Kate Gregory
Greate works. Thanks.
Cook Schelling
A: 

The MSDN articles are pretty good. The walk-throughs on creating custom project are not bad either.

leogdion