Getting access to my add-in from within an event handler
Sun, 26 Mar 2006 14:44:05 -0800
Hi --
I was hoping someone might have an idea about how I can get access to an
instance of my add-in from within the context of a DebuggerEvent handler. My
need is to have the target application being debugged have access to the
Visual Studio extensibility model so that it can create new windows and pane ...
|
Extend debugger
Sat, 25 Mar 2006 21:10:11 +0100
Dear all,
is it possible to use Visual Studio debugger with other compiler (for
example gcc?). Is the format of PDB docummented? Can VS debugger read coff?
Thank you very much for any comments.
...
|
VS 2005 cast back to Microsoft.Office.Core.CommandBars
24 Mar 2006 09:27:47 -0800
With all of the VS 2005 DTE methods returning System.Object rather than
x.x.x.CommandBars, I assumed this was for backwards compatibility.
However, I'm getting an InvalidCastException on the following lines of
code in 2005 when CommandBars is from the Microsoft.Office.Core
namespace in the office interop assem ...
|
Hooking into a context menu.
Thu, 23 Mar 2006 17:28:51 -0800
Is there a way to hook into the IDE where before a certain context menu
comes up, an event if fired in my add-in. The purpose is to add/remove
my custom menu items from the context menu (depending on the situation).
How can I hook this up? ...
|
Best practice for accessing DTE from within the target app?
Thu, 23 Mar 2006 04:44:22 -0800
A quick question that someone might know the answer to. I am accessing the
DTE library not from an addin, but from code within the target application.
This is clearly running in another thread than the IDE, if the number of
"server busy" messages I'm getting is any indication. Is there any
discussion of ...
|
Re-install Addin to VS2005
Wed, 22 Mar 2006 12:43:51 -0700
I've been playing around with a simple add-in I'm working on for Vs2005. At
one point I'd given up on working on it and moved the project files to a
different folder. The next time I ran Visual Studio, it complained that it
could no longer find the add-in and asked if I wanted to remove the add-in
from the ...
|
Generating Assembler Code in CLR App
Wed, 22 Mar 2006 08:20:32 -0800
I discovered that when I compiled my C++ /clr app with the /clr option, I
have lost the ability to view (and thus debug) Intel assembly language code I
am generating. In my app I allocate a piece of memory with VirtualAlloc and
use the PAGE_EXECUtE_READWRITE flag, but when I attempt to type an address
fro ...
|
|
|
Project manipulation from an add in
Tue, 21 Mar 2006 06:34:02 -0500
I need to change the value of Copy local based on the active configuration,
below is the solution I was given to do this, but it requires I manually
edit the project file.
This is where the add in comes into play, I am able to get the list of
references and such from the project object, so I've got it st ...
|
Project Subtype - extending IVsHierarchy items?
Mon, 20 Mar 2006 13:27:43 -0700
If I want to add properties of particular nodes in my project Subtype,
so they show up in the Properties tool window, do I use the
VSHPROPID_BrowseObject propid?
Also, how do I ensure these changes are persisted back to my project file?
e.g., I subtype a C# project, and want to persist some extra data fo ...
|
Creating generic component
Sun, 19 Mar 2006 23:29:50 +0100
Hello,
I would like to put a component with type parameters on the form. Like
MyComponent<Customer>. Is this possible somehow?
Thanks,
Otto
...
|