Ok, so the breakpoints are in the debuggers collection. But how do I create new breakpoints programmatically to add into the collection? It seems that most of...
Hi Anna-Jayne, belated "thank you" for the information. Unfortunately, I am still fighting that same problem, now from the different angle. I really need that...
Hi Carlos, I've finally got around to implement such a work-around (as you've suggested). I can iterate through all items in the given header file and find ...
Hi Daniel, I am also trying to patch CodeElementFromPoint() (who isn't?)... My problem is different from yours (you can read about it in my recent post here),...
... If you are calling get_StartPointOf and get_EndPointOf on the code element you can pass vsCMWhereDefinition or vsCMWhereDeclaration as the second argument...
Well, that did it! Thanks a lot! Interestingly, I was using that call later in my processing. But at the problem point, I only had generic CodeElement (not a...
I'm sorry Vlad, but I have no experience with C++ projects... Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5...
Try Debugger.BreakPoints.Add(...) Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA You can code, design...
Hi Peter, I have not tested with VS 2005 yet, but if it is not a bug but a new "by design" behaviour, if the Namespace property returns Nothing and your ...
Hi Carlos, Yes, that was my first idea too. But Project.Properties.Item("RootNamespace") or Project.Properties.Item("DefaultNamespace") return only String, not...
HI, I would like to use both EnvDTE and VSIP interface. The dll will be of 'addin' type and VSIP interfaces will be used wherever it is required. Is it...
I don't think this can be done. VSIP is not like using envdte where you can just make static calls to get things. You have to create a package which is secured...
Hi Bill, Not exactly, you can get VSIP services from an add-in using the VSIP DLL Microsoft.VisualStudio.OLE.Interop.IServiceProvider and then you use ...
Can you point me a c# sample which uses IServiceProvider.QueryService interface. giri ________________________________ From: vsnetaddin@yahoogroups.com...
Hi, I have some requirement that I need to create a tool window which contains a richtextbox and I need to fill this rich text box according the an output of a...
FWIW: I'm updating the OutputWindowPane from a thread by giving the thread a pointer to a class containing EnvDTE and a method that locates the Pane and then...
... Hi Tim, I am now dealing with IDesignerHost and WebForms. I have got successfully the IDesignerHost and you suggested and I would like to know if you can...
I have a msoControlComboBox control, and I would like to be able to detect when a user has typed a new value into the edit box and then add that item into the...
... I never really tried to do that, I sort of assumed that the designer would not have controls instantiated for those. My code directly scans the ASPX file...
This problem was reported to us on 4/26, and we are looking into what we can do - but thanks for the notice! Craig ________________________________ From:...
Hi Tim, Thank you very much for such detailed response. After posting my question I spent a couple of hours searching in Google about IDesignerHost and ...
... This can be done. I experimented with it at one point, but ended up not using it for my project, which is a modal wizard. Get the IComponentChangeService...
Thanks Tim, I was already using IComponentChangeService for WinForm controls and it works too with WebForm controls, but I must test yet if it works with HTML ...
Are you using this to build an Add-in for VS or for Office? For VS, you really do not need the shim and is unnecessary. While I cannot give too much info about...
Thanks for the quick reply Craig, The addin is for Visual Studio 2003. I believe that I could really benefit from the addin being loaded in it's own...
Also, if it makes a difference... I explicitly specify the version (1.1.0.1) of the assembly and COM shim. I also removed all of the other dlls, with the same...