Search the web
Sign In
New User? Sign Up
vsnetaddin · Visual Studio.NET Add-ins
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2531 - 2560 of 3874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2531
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...
moramatte
Offline Send Email
May 2, 2005
4:09 pm
2532
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...
vladfein
Online Now Send Email
May 2, 2005
11:18 pm
2533
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 ...
vladfein
Online Now Send Email
May 2, 2005
11:25 pm
2534
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),...
vladfein
Online Now Send Email
May 2, 2005
11:32 pm
2535
... If you are calling get_StartPointOf and get_EndPointOf on the code element you can pass vsCMWhereDefinition or vsCMWhereDeclaration as the second argument...
Thierry Miceli
sophocle33
Offline Send Email
May 3, 2005
12:00 am
2536
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...
vladfein
Online Now Send Email
May 3, 2005
12:22 am
2537
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...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
9:42 am
2538
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...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
9:45 am
2539
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 ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
9:50 am
2540
Hi Carlos, Yes, that was my first idea too. But Project.Properties.Item("RootNamespace") or Project.Properties.Item("DefaultNamespace") return only String, not...
VBdocman support
absurdisti
Offline Send Email
May 4, 2005
10:41 am
2541
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...
Giri Reddy
busygiri
Offline Send Email
May 4, 2005
12:05 pm
2542
Yes, you can use DLLs from the VSIP / VSIP Extras from your add-in. See http://blogs.msdn.com/allend/archive/category/2342.aspx ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
12:21 pm
2543
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...
Bill Foust
rimdev
Offline Send Email
May 4, 2005
2:14 pm
2544
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 ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
2:27 pm
2545
Can you point me a c# sample which uses IServiceProvider.QueryService interface. giri ________________________________ From: vsnetaddin@yahoogroups.com...
Giri Reddy
busygiri
Offline Send Email
May 4, 2005
2:34 pm
2546
See http://groups-beta.google.com/group/microsoft.public.vstudio.extensibility/m sg/6087b65156bca43f?hl=en ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 4, 2005
2:48 pm
2547
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...
Giri Reddy
busygiri
Offline Send Email
May 4, 2005
3:02 pm
2548
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...
Jeffrey Greenberg
jgberg
Offline Send Email
May 5, 2005
5:03 pm
2549
Hi, After installing VS 2005 Beta 2 on a machine with VS.NET 2002 SP1 and VS.NET 2003, retrieving ProjectItemsEvents with ...
carlos_j_quintero
carlos_j_qui...
Offline Send Email
May 7, 2005
9:39 pm
2550
... 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...
carlos_j_quintero
carlos_j_qui...
Offline Send Email
May 9, 2005
1:31 pm
2551
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...
dvryce
Offline Send Email
May 9, 2005
2:28 pm
2552
... 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...
Tim Farley
krelnik
Online Now Send Email
May 9, 2005
4:22 pm
2553
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:...
Craig Skibo
craigs_ms
Offline Send Email
May 9, 2005
10:48 pm
2554
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 ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 10, 2005
9:13 am
2555
... 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...
Tim Farley
krelnik
Online Now Send Email
May 10, 2005
3:26 pm
2556
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 ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
May 11, 2005
8:33 am
2557
Hi all, My addin worked before I tried using a shim, but this is what I have done so far... I downloaded the COM shim wizards from MS ...
jim_1_1984
Offline Send Email
May 13, 2005
5:22 pm
2558
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...
Craig Skibo
craigs_ms
Offline Send Email
May 13, 2005
5:58 pm
2559
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...
jim_1_1984
Offline Send Email
May 13, 2005
6:32 pm
2560
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...
jim_1_1984
Offline Send Email
May 13, 2005
7:30 pm
Messages 2531 - 2560 of 3874   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help