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 3663 - 3692 of 3875   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3663
Use the SolutionBuild.LastBuildInfo Property which retuns the number of projects that failed to build. A return value of zero indicates a successful build. ......
Simple Guy
simpleguy_mail
Offline Send Email
Aug 1, 2006
9:32 am
3664
Thank you, Simple Guy. Still, I'm not sure if this will work for me, because imagine the developer has successfully built the solution and after that he does ...
danielmenezescardoso
danielmeneze...
Offline Send Email
Aug 2, 2006
12:39 pm
3665
Dear all, For the VS2003 there is an installer with 3 interops, which must be redistributed with our apps. What is about VS2005? I could not find such...
Bonio Lopez
boniolopez
Offline Send Email
Aug 7, 2006
10:15 am
3666
I'm writing an addin that needs to be notified when the caret moves in the active document, and when any code document's text is changed in the current...
kb.cooper
Offline Send Email
Aug 7, 2006
7:34 pm
3667
Ok, I think I've got it. I needed to listen to the ITextManagerEvents on the IVsTextManager, then manage my hooks in OnRegisterView and OnUnregisterView. I'm...
kb.cooper
Offline Send Email
Aug 8, 2006
2:07 am
3668
well i do not mean to impose anything on u out of VS but becuase its free and totaly supported and from came powerfull products, i suggest that u check out the...
reader man
san_kan1gb
Offline Send Email
Aug 8, 2006
7:26 am
3669
There's always a gotcha. If my addin is loaded after VS starts, there may be IVsTextViews that are already registered, and I never get an event for them. I...
kb.cooper
Offline Send Email
Aug 10, 2006
4:49 am
3670
I faced with the following problem. I would like to make possibility to change GridSize, ShowGrid and SnapToGrid values, which available for user from Tools->...
misha_zhutov
Offline Send Email
Aug 11, 2006
11:15 am
3671
See my article HOWTO: Getting properties from the DTE.Properties collection of Visual Studio .NET. at: http://www.mztools.com/resources_vsnet_addins.htm Best...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 11, 2006
11:20 am
3672
Hi, Does somebody know how to hook intellisence? I would like to add own words dependent on context to c# intellesence. I know that people can do such things...
Bonio Lopez
boniolopez
Offline Send Email
Aug 11, 2006
2:29 pm
3673
Hello, At a specific time during my add-in execution, it needs to determine if a solution build is up to date or if a build is needed (and determine if the ...
Daniel Cardoso
danielmeneze...
Offline Send Email
Aug 11, 2006
2:58 pm
3674
I will be out of the office starting 08/11/2006 and will not return until 08/30/2006. With a bit of luck I'm currently sitting on a beach with a glass of wine...
bob.powell@...
bobpowell1
Offline Send Email
Aug 11, 2006
2:59 pm
3675
Hi, I have a user control which is being hosted in a ToolWindow thus: Private moScratchpadWindow As Window2 ' The window that hosts the CodeCheck Private...
thoraxable
Offline Send Email
Aug 17, 2006
6:37 am
3676
Hi Lee, See the Message #3187 and the whole thread. http://groups.yahoo.com/group/vsnetaddin/message/3187?threaded=1&l=1 Best regards, Carlos J. Quintero ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 17, 2006
7:55 am
3677
Many thanks, I must confess I had read that thread before but couldn't make much sense out of it. However, with a fresh brain this morning I have gotten it to...
thoraxable
Offline Send Email
Aug 17, 2006
10:03 pm
3678
Hi all, If you haven't done this yet, I encourage you to download Windows Vista Beta 2, install Visual Studio and your add-in, and test it all. Chances are...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 18, 2006
1:41 am
3679
Hi all, I am using a visual studio 2005 setup project for deployment. I have exluded from build all visual studio assemblies (envdte, ...
Bonio Lopez
boniolopez
Offline Send Email
Aug 19, 2006
3:12 pm
3680
Hi, For those of you not aware of MSDN Wiki (I had heard the term but hadn't investigated it until today), it is a version of MSDN with the same content but...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 23, 2006
8:49 am
3681
Window w = dte.ItemOperations.Navigate("www.google.com", vsNavigateOptions.vsNavigateOptionsNewWindow); I am using the above line of code to spawn a new window...
karanapimp
Offline Send Email
Aug 23, 2006
10:42 pm
3682
Hi, In an VS2005 addin, I show a modal Windows Forms dialog. For correct behavior (modality, taskbar icon) I guess I need a parent window, which ShowModal...
hauptmannp
Offline Send Email
Aug 25, 2006
12:44 am
3683
Hi, Perhaps you can help me again. I have 2 problems with auto-hide on docked tool windows. I can create my tool window, dock it to the bottom of the screen,...
thoraxable
Offline Send Email
Aug 25, 2006
3:34 am
3684
You can get the handle of the IDE window with DTE.MainWindow.HWnd that you can use to implement System.Windows.Forms.IWin32Window with New ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 25, 2006
6:04 am
3685
Hi Lee, I am not sure about the first problem, but about the second, it is a bug that I filed and MS told me that it will be fixed in the next version. See: ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 25, 2006
6:25 am
3686
Dear all, could anyone tell me how I can change the icon of Add-in tool button, it always appear a smile face for the tool button. I would like to set another...
enusuki
Offline Send Email
Aug 26, 2006
12:48 pm
3687
How do other people deal with exception handling in managed VS addins, particularly in Windows Forms dialogs and the like? The trouble with Windows Forms...
Arild Fines
arild_fines
Online Now Send Email
Aug 26, 2006
12:49 pm
3688
Hi, See my article HOWTO: Creating custom pictures for Visual Studio .NET add-ins commands, buttons and toolwindows. At ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 26, 2006
12:55 pm
3689
Hi Arild, I don't know about others, but I put a Try/Catch block in each piece of code that is the starting point for some execution. That includes event...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Aug 26, 2006
12:59 pm
3690
... That's exactly how I do it too. -- Peter Macej Helixoft - http://www.helixoft.com VSdocman - Commenter and generator of class documentation for C#, VB .NET...
Peter Macej
peter_macej
Offline Send Email
Aug 26, 2006
4:38 pm
3691
Ctrl+F3 - Finds the next occurrence of the currently selected text in the document. In both VS 2003 and VS 2005 this keyboard shortcut has stopped working for...
Kevin McFarlane
kaa_mcfarlane
Offline Send Email
Sep 2, 2006
4:32 pm
3692
1. categories how do you put your commands in different category? 2. Kind of related: How do I not show my commands at all. I have some commands that I...
mailhjain
Offline Send Email
Sep 5, 2006
8:12 pm
Messages 3663 - 3692 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