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...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2772 - 2801 of 3875   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2772
Hi, I want to add a method to my AddIn that will build a collection of file names and line numbers that contain my searchString. My idea is to populate a...
n/a
dshiel
Offline Send Email
Aug 2, 2005
12:42 am
2773
... You could perform a regular expression search on the files without using Visual Studio automation. For C++ there is the boost regex library. ... Thierry...
Thierry Miceli
sophocle33
Offline Send Email
Aug 2, 2005
1:06 am
2774
Nobody? Craig? Carlos? Thx. Christian ... item.ProjectItem.ContainingProject.Properties.Item("WebServer").Value.ToString();...
Christian Weyer
cweyer74
Offline Send Email
Aug 3, 2005
7:55 pm
2775
Does anyone know if there is a way to programatically access the Add References dialog other than DTE.ExecuteCommand(...). Thanks, Trent...
trex213
Offline Send Email
Aug 3, 2005
11:29 pm
2776
Did you ever figure out a way to persist the state of your Tool Window? I'm using a different shim (heck, I don't even know which one) and everytime I launch...
Magyar, Thomas J. CI...
tamagyar
Offline Send Email
Aug 5, 2005
3:57 pm
2777
I have an add-in that searches through the projects in a solution for specific files and processes them accordingly. We have command-line based tools that do...
Magyar, Thomas J. CI...
tamagyar
Offline Send Email
Aug 5, 2005
4:00 pm
2778
Wow, for once I can answer my own question (please verify that I did it correctly)! _DTE theApplicationObject; Window win =...
Magyar, Thomas J. CI...
tamagyar
Offline Send Email
Aug 5, 2005
4:53 pm
2779
You could have multiple named output windows. For example a thread can create a window pane and write to it. The panes are listed in the drop down box in the...
Naga Malepati
mviswanath
Online Now Send Email
Aug 5, 2005
6:49 pm
2780
Hello I'm working on an AddIn for VS2005 and I have a command that installs a couple of buttons and menus, and at some point I want to remove them all for ...
Gustavo Guerra
gustavo_guer...
Offline Send Email
Aug 6, 2005
12:12 am
2781
Tom, Kind of. It's still flaky but much better than it used to be. I've added tool window creation call to OnStartupComplete(). I've also added tool window's...
usysware
Offline Send Email
Aug 7, 2005
4:15 am
2782
See: http://groups.google.es/group/microsoft.public.vstudio.extensibility/browse_ frm/thread/f0e6ed07648d8504/af7afed6e5c1399a?lnk=st ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
10:37 am
2783
Try using EditPoint.SmartFormat(TextPoint) to format the section of text that you have inserted (or the whole procedure, etc.) Best regards, Carlos J. Quintero...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
10:44 am
2784
Hi, Basically there are 3 approaches to make an add-in for VS.NET 2003 and VS 2005: 1) To have a single source code and to compile to a single binary using ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
11:06 am
2785
There are 2 or 3 HOWTO articles related to that on this section of my web site: http://www.mztools.com/resources_addin_developers.htm ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
11:08 am
2786
You can add references through code casting Project.Object to VSLangProj.VSProject and the calling VSProject.References.Add, but if you want to show the...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
11:11 am
2787
Hi David, If you want maximum performance, you have to skip the automation model and search directly on the files (similar to the Find in Files feature of VS)....
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
11:17 am
2788
Hi, - CommandBar.Controls returns a CommandBarControls collection object, which lacks the Delete method that you are talking about. - If you refer to the...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
11:34 am
2789
Hi Christian, I have returned today from my vacations (just in case it has not been noticed with the bunch of messages that I have answered today). About your...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
12:54 pm
2790
Hi all, After several months busy, Craig posted a new entry in his blog a couple of weeks ago. There are some very interesting things for VS 2005 add-in ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
2:36 pm
2791
Hi Craig, A couple of us in the Yahoo forum noticed (see message #2039: http://groups.yahoo.com/group/vsnetaddin/message/2039) that multiple copies of the...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 8, 2005
2:48 pm
2792
Hi Carlos, ... Well we just had to be different. <grin> One of our add-ins will quite happily compile on either VS2003 or VS2005 (I haven't tried it on VS2002,...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Aug 8, 2005
10:46 pm
2793
Thanks for your answers. One more question. In this code: protected void removeToolbar(ref CommandBar bar) { if (bar != null) { bar.Visible = false; ...
Gustavo Guerra
gustavo_guer...
Offline Send Email
Aug 9, 2005
1:43 am
2794
Sorry, if this has already been asked/answered already, but... I am developing an add-in that could add a new web form to an ASP.NET project, and populate it...
librieguy
Offline Send Email
Aug 9, 2005
1:44 am
2795
See messages #2763 and #2554 and related. Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA You can...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 9, 2005
8:04 am
2796
Hola Gustavo, - Commands.RemoveCommandBar should be used only with permanent commandbars, created with Commands.AddCommandBar. As I said, I do not use...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 9, 2005
8:10 am
2797
... As Carlos wrote, you should use CommandBar.Delete to delete the temporary CommandBar. But I can confirm, that COM exception is thrown in VS 2005 beta2...
Peter Macej
absurdisti
Offline Send Email
Aug 9, 2005
8:30 am
2798
Hi Anna-Jayne, Ah, you are the brave one using C++/ATL for your add-in.... ;-) Well, yours are good news because some people will certainly want a single ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 9, 2005
8:39 am
2799
Ummm..., now you make me doubt. Maybe I also saw crashes deleting commandbars using the Beta 2, but I am not sure now. There were so many crashes and problems...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 9, 2005
8:49 am
2800
... Temporary command bars go away anyway when you close VS, so why bother to calling Delete on them? I prefer to use the temporary controls and commandbars...
Gustavo Guerra
gustavo_guer...
Offline Send Email
Aug 9, 2005
11:02 am
2801
... You're right, temporary commandbars created in old VB6 way disappear automatically. But there is a bug in VS 2005 beta2 so I cannot use them. I have to...
Peter Macej
absurdisti
Offline Send Email
Aug 9, 2005
11:20 am
Messages 2772 - 2801 of 3875   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