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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 729 - 758 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
729
Hi Suzan, ... I can help you with finding the currently selected project. Do a search for 'selectedProject()' here ...
Jamie Cansdale
turboslug
Offline Send Email
Mar 3, 2003
2:20 pm
730
Hi folks, I've been keeping a weblog <http://dotnetweblogs.com/NUnitAddin/Category/177.aspx?Name=NUnitAddin> charting the progress of an addin I've been...
Jamie Cansdale
turboslug
Offline Send Email
Mar 3, 2003
2:22 pm
731
Oops, I see yahoo doesn't support HTML emails. Here it is again with proper formatting... Hi folks, I've been keeping a weblog [1] charting the progress of an...
Jamie Cansdale
turboslug
Offline Send Email
Mar 3, 2003
2:38 pm
732
Hi guys, WE're developing a Visual Studio .NET AddIn, which use the IDE property window.We want to fill in the combobox of the property window with component...
suzan gunay
suzangunay
Offline Send Email
Mar 4, 2003
7:50 am
733
hi All, Does anyone know how to detect what language a project is using? My visual studio add-in will have different options for different languages. Thanks, ...
ghop_98
Online Now Send Email
Mar 5, 2003
7:03 pm
734
You should be able to call the Project.FullName property, grab the file extension, and use that as the file type. Craig Inside Visual Studio .NET 2003 ...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
12:28 am
735
You cannot set the properties of any window, you can only call Window.SetSelectionContainer on a window which has been created through an Add-in using...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
12:30 am
736
First, thanks for the recommendation on the book! There is not that much (OK, nothing) in the book about the Debugger automation model, but if there is ever a...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
12:57 am
737
One other way of finding a selected project is to use the DTE.ActiveSolutionProjects property, which will return a list of projects that have one or more nodes...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
1:08 am
738
Chances are you are seeing this either when running a macro or when running a standalone application that gets an instance of DTE through either new'ing an...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
1:20 am
739
You can, but you do not want to use AddNamedCommand to do it. The correct method is Commands.AddCommandBar, the second argument should be vsCommandBarTypeMenu,...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
1:22 am
740
Other than removing the file within the BuildEvents.OnBuildBegin event and adding the file22.cs file, this is not supported. Craig Inside Visual Studio .NET...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
1:23 am
741
I tried to reproduce your problem, but could not find this property. I have heard of other people having similar problems with other properties, and almost...
Craig Skibo
craigs_ms
Offline Send Email
Mar 6, 2003
1:34 am
742
hi all, I've written a usercontrol in C# that is part of my add in. I'd like to detect when a file is opened (actually, displayed) in the editor, and the...
dave wanta
ghop_98
Online Now Send Email
Mar 6, 2003
2:32 am
743
... I've been wrestling with the VS.NET automation model for a good number on months now. It was great to finally find some decent documentation! Thanks for...
Jamie Cansdale
turboslug
Offline Send Email
Mar 6, 2003
3:10 pm
744
I have an AddIn that exposes the functionality of IstallAssembly in RegistrationHelper class to allow a developer to register a Serviced Component in COM+. The...
Mario
marioivanalv...
Offline Send Email
Mar 6, 2003
10:42 pm
745
hi all, i tried adding a menu item to the Build menu but it didn't work. it works only for the File,Edit,View,Tools,Window menus why is that? thanks in advance...
Mohamed Mesalem
m_mesalem
Offline Send Email
Mar 8, 2003
8:16 pm
746
hi all, I have an add-in that I've written as a usercontrol It hosts itself in the sliding windows. Once the control has loaded and docked, everything is fine....
ghop_98
Online Now Send Email
Mar 8, 2003
10:26 pm
747
Hi Mohamed, I hit the same problem when trying to add a menu item to the Debug menu. It turns out there is a toolbar called Debug (there's one called Build as...
Jamie Cansdale
turboslug
Offline Send Email
Mar 9, 2003
12:53 am
748
hi all, i suppose that Project.IsDirty returns whether the Project has changed or not but it do not? any one knows why? thanks all, Mohamed Mesalem...
Mohamed Mesalem
m_mesalem
Offline Send Email
Mar 10, 2003
1:59 am
749
There's supposed to be a ToolWindow sample on MSDN at: http://msdn.microsoft.com/vstudio/downloads/samples/automation.asp In fact, if you click on one of the...
Jeff Kryzer
bartsimpson5...
Offline Send Email
Mar 11, 2003
6:44 am
750
Officially (MS) you have to use a shim control, but I have got by so far without it. If you do not want the shim control: The last parameter to...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Mar 11, 2003
8:32 am
751
Any ideas why macros won't run in two different VS.NET installs we have here? I can record a temp macro, but it doesn't play back, and no other macros run...
schnollmvp
Offline Send Email
Mar 11, 2003
5:02 pm
752
Hi Craig, I have yet another question on the topic: Is it possible to attach the debugger to an application domain created by an add-in within the devenv...
lapshin_d
Offline Send Email
Mar 12, 2003
5:33 pm
753
For all who have been running into a problem like this, I have found the problem and a relatively simple workaround. The problem is happening on our (VS) side....
Craig Skibo
craigs_ms
Offline Send Email
Mar 12, 2003
8:59 pm
754
The automation samples web site has an Add-in called EventWatcher that will display information in the Output window when each event is fired by VS. You should...
Craig Skibo
craigs_ms
Offline Send Email
Mar 12, 2003
9:03 pm
755
Thanks a bunch! Cheers! Dave ... From: Craig Skibo To: vsnetaddin@yahoogroups.com Sent: Wednesday, March 12, 2003 3:03 PM Subject: RE: [vsnetaddin] detecting...
dave wanta
ghop_98
Online Now Send Email
Mar 12, 2003
9:08 pm
756
I would like to create an Add-In that displays a dockable window, just like all of the normal windows in the IDE, i.e. Solution Explorer. I would like the...
Cavacas, Paul
pcavacas
Offline Send Email
Mar 12, 2003
9:08 pm
757
Each menu is given a name, but there is nothing that requires a menu to be given a unique name. When you say DTE.CommandBars["Name"], if there are two or more...
Craig Skibo
craigs_ms
Offline Send Email
Mar 12, 2003
9:11 pm
758
You can have only one window with the same GUID visible at any one time. Since the Add-in has not been unloaded, you should call windowToolWindow.Visible =...
Craig Skibo
craigs_ms
Offline Send Email
Mar 12, 2003
9:14 pm
Messages 729 - 758 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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