Hi, Yes, there are few samples and few people using C++ as programming language, and supporting C++ projects as targets. I use VB.NET mainly and I can "speak"...
1) How is that your add-in needs a shortcut if add-ins are not standalone exes? 2) Which setup program are you using? Or do you mean keyboard shortcut for some...
Hi Vlad, ... Not at all - we certainly are (both our add-ins are written in native C++). Had your question had been about (say) the project system or...
i m using the .net setup project,that is created once i make a extensibility project..yes, i need to make a keyboard shortcut for executing the plugin that...
The use Command.Bindings. Take care of exceptions because if I remember correctly, if the keyboard profile is built-in, it will fail (the user needs to make a...
I have not tested it, but I think that you must create a Windows Control Library: Open VS.NET, click New, Project... and select Windows Control Library...
Hi, I wrote a function to replace the buggy CodeElementFromPoint. My function iterates top-down the FileCodeModel asking the CodeElements if the point is...
I think I've found a(nother) bug... When, inside the LineChanged event, I try to enumerate through the CodeElements in the FileCodeModel, Visual Studio...
Hi i am trying to create a simple VsPackage(with tool window) using VS2005 . VsPackage is created succesfully ,but when i try to build package it gives me...
... This approach is not recommended. The code in your LineChanged event should be ultra-fast, and navegating the code model is not that fast. For large files...
... If you take that approach donīt forget to post the parser in the Files \ Utilities section of this forum :-) And you could start with parsing variables...
Thank you for replying. I really wish I could do that (not access the CodeModel in the LineChanged event) but I could not find an alternate solution to my ...
... anymore and ... Files \ ... I surely will. ... is not ... methods ... model. Have you found a workaround for the getEnumerator bug or know how I can solve...
... My god! ;-) ... property. Not sure if it is a bug since you are trying to access the code model while it is being modified and maybe it is not updated yet....
... methods ... model. Have you found a workaround for the getEnumerator bug or know how I can solve this problem? Regarding my other post, have you had to ...
... There is a free VB.NET parser on some place of the Web, if you are interested. ... As I told, I am not using the LineChanged event. ... EndPoint property? ...
... Ehehe :) ... GetEndPoint ... model while ... you ... perform your ... 1 second ... ignore ... Thanks! Very smart suggestion. I'll try it. [hope it works...
Greetings! Due to an unbelievably annoying bug in Visual Studio .Net, I frequently have to close all of my open windows, shut down VS.Net, reopen VS.Net, and...
Hi, You can open documents in any view using ProjectItem.Open(viewKind), which returns a Windows which in turn you make visible with Window.Visible=True. There...
Hi all How is everybody on this fine day? ;) I got a quick question. I want to add a menu option on the Solution Explorer Tree in VS 2005 with VSIP (when the...
Carlos, Thank you very much for your reply. It looks like it should give me what I need, but I'm still having problems. In order to use ProjectItem.Open, I...
1) You can use directly ProjectItem.ContainingProject, canīt you? But this is not actually your problem: 2) Projects have a Name, a FullName and a UniqueName....
Hi, Through my VSAddin dll, I would like to Step1: store all the break points Step2: Delete all break points Step3: .. Step4: .. Step5: Re-Apply all break...
The Debugger class has a BreakPoints collection with a Add method, and each BreakPoint has a Delete method and a Enabled property, etc. Best regards, Carlos J....