Tagged Questions
13
votes
4answers
2k views
Capture window close event
I want to capture events that close editor window (tab) in Visual Studio 2008 IDE.
When I use
dte2.Application.Events.get_CommandEvents(null, 0).BeforeExecute
I successfully captured such events:
...
4
votes
1answer
158 views
Performance of changing Visual Studio colors with custom add-in
I'm creating an add-in for Visual Studio 2008 that will allow me to switch between color schemes with a hotkey.
I got it to successfully load a color scheme and apply it, but it's very slow.
Here's ...
3
votes
2answers
338 views
How to block on a OpenFile in a Visual Studio addin
I have a Visual Studio 2008 addin that when I press a certain hotkey, it opens a specific file (different based on the context of the hotkey) and then searches that file for a specific string (again, ...
1
vote
1answer
79 views
How can I find the Column Line of the current StackFrame in Visual Studio Debugger?
There is no ColumnNumber property in the EnvDTE.StackFrame2 interface, even though LineNumber does exist: http://msdn.microsoft.com/en-us/library/cc701201(v=VS.90).aspx;
IL offset will also do, I ...
0
votes
0answers
41 views
Visual Studio Addin - Programatically find References
I have an ASP.NET web app with various tiers, UI > BL > DAL.
I want to add a custom attribute to functions in the UI tier, lets say I add one to "MyDisplayUserNameFunction"
Then I want to be able to ...
0
votes
0answers
133 views
Visual Studio 2010 AddIn: How to get the UIHierarchyItem for a Project object using DTE
How do I get the UIHierarchyItem for a given Project object using DTE? This is running in a VS 2010 C# add-in.
I have no problem executing commands for selected projects, but now I need to apply a ...
0
votes
1answer
213 views
Visual Studio 2010 add in - events not triggered
I have written an add in that takes the active document as a parameter. So each time that the active document has changed, I need to know. To do so, I wanted to use ...
0
votes
0answers
151 views
IDE crashes while calling ProjectItems.AddFromFile with TFS connected
i wrote a Visual Studio 2008 Addin, which generates some code files for me with some settings which i can enter on a UI form.
If i execute the addin with a connection to our TFS 2008, the dialog of ...