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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3286 - 3315 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3286
I have created a managed add-in for VS 2005 that adds some commands to the "Item" command bar on the solution explorer. Two of my commands need to be shown or...
richard_d_larson
richard_d_la...
Offline Send Email
Feb 2, 2006
9:34 am
3287
Hi Rich, I have seen #2 (multiple calls) although maybe not only with context menus (not sure now) but as long as your QueryStatus is ultra-fast, there should...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 2, 2006
9:57 am
3288
Thanks for the fast reply Carlos! I'll look into the UpdateCommandUI() call to see if that fixes the issue. I'll let you know. Also, my QueryStatus logic is...
richard_d_larson
richard_d_la...
Offline Send Email
Feb 2, 2006
4:30 pm
3289
Any ideas anybody?...
azhagan2k3
Offline Send Email
Feb 2, 2006
11:45 pm
3290
If you are trying to create your own designer or language within Visual Studio, you will need to get the VSIP SDK. You cannot use the automation model to do...
Craig Skibo
craigskibo_msft
Offline Send Email
Feb 3, 2006
2:29 am
3291
Hi all, I have updated my web site with new HOWTO articles: http://www.mztools.com/resources_vsnet_addins.htm HOWTO: Navigate the files of a solution from a...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 3, 2006
11:14 am
3292
Dear all, any ideas how to avoid this exception? Thanks, Boni System.Runtime.InteropServices.COMException (0x80004005): Cannot access data for the desired file...
Bonio Lopez
boniolopez
Offline Send Email
Feb 3, 2006
12:42 pm
3293
Carlos is right, you must use the VS SDK (formerly called VSIP). you can read about it at www.microsoft.com/vstudio/extend. In essense, you create a managed...
Bill F. Foust
rimdev
Offline Send Email
Feb 3, 2006
5:08 pm
3294
An object is in the "zombie" state when the parent object has been destroyed. For example, suppose you are holding onto an point object, such as an EditPoint,...
Craig Skibo
craigskibo_msft
Offline Send Email
Feb 4, 2006
1:08 am
3295
I'd like to be able to tell if a property of the solution changes. More specifically, I want an event telling me that the startup project list has changed as...
katiek06877
Offline Send Email
Feb 4, 2006
2:53 am
3296
Dear all, When any c++ project is opened in VS2005 I get a following sequence of events. ... event: BeforeClosing event: BeforeClosing event: ItemAdded,item...
Bonio Lopez
boniolopez
Offline Send Email
Feb 5, 2006
12:38 pm
3297
I found following at: http://72.14.207.104/search?q=cache:Rz6uCJ-Z-74J:msdn.microsoft.com/chats/tr ...
Bonio Lopez
boniolopez
Offline Send Email
Feb 5, 2006
1:26 pm
3298
Hi all, I have updated two of my articles to include some extra info about Visual Studio 2005: HOWTO: Getting IDesignerHost and IHTMLDocument of WebForms from...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 6, 2006
1:01 pm
3299
Hi friends, I am playing with the text formatting options (Tools/Options/TextEditor/Formatting.) in VS 2005 IDE. We can format a file using this options. but I...
rathish
contactrps
Offline Send Email
Feb 6, 2006
1:37 pm
3300
Hi Rathish, AFAIK, there is no "formatting object". The EditPoint class has a SmartFormat(textPoint) method and that's all. To alter the formatting settings...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 6, 2006
1:41 pm
3301
... http://72.14.207.104/search?q=cache:Rz6uCJ-Z-74J:msdn.microsoft.com/chats/tr ... ...
katiek06877
Offline Send Email
Feb 6, 2006
1:46 pm
3302
I want to create a tool window that interacts with the debugger. Unfortunately, every time that I start the debugger, my tool window disappears. How can I tell...
Dan Christensen
daniel_l_chr...
Online Now Send Email
Feb 6, 2006
6:43 pm
3303
Hi Dan, It's an interesting question. Toolwindows are hidden when you enter the debug mode. I donīt know if you can specify that a toolwindow is intended too...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 6, 2006
9:45 pm
3304
Hi, At this point, I can explore and generate code with the CodeModel to make new classes (Standard Classes .cs) The problem is that I also need to do almost...
Daniel Kacowicz
dkaco
Offline Send Email
Feb 7, 2006
9:00 am
3305
Hi Dan, hi Carlos, hi all, I am also interested in this feature. To Carlos: Could you please point where to look in SDK? Which feature or class do you have in...
Bonio Lopez
boniolopez
Offline Send Email
Feb 7, 2006
11:00 am
3306
Hi Boni, ... I am not familiar yet with the SDK, it is in my TODO list :-) but I am familiar with the extensibility model for addins, so if something is...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 7, 2006
11:35 am
3307
Dear all, I can't find solution for the simple problem in VS2005. I want to know is my toolwindow on top in the linked frame or is it not. 1.Is it possible to...
Bonio Lopez
boniolopez
Offline Send Email
Feb 7, 2006
5:30 pm
3308
... I may be wrong but I played with tabbed documents in VS 2005, see http://www.vbdocman.com/blog/archives/10 and found there is no linked frame for tabbed...
Peter Macej
absurdisti
Offline Send Email
Feb 7, 2006
5:52 pm
3309
I found a VSIP solution, which can be used from an addin. Dim hr As Integer Dim _sp As Microsoft.VisualStudio.OLE.Interop.IServiceProvider = ...
Bonio Lopez
boniolopez
Offline Send Email
Feb 7, 2006
6:09 pm
3310
Dear all, I have an idea to use Platform SDK to find out a top window in frame but I miss a last step to get it work:(. I am able to find a window handle of...
Bonio Lopez
boniolopez
Offline Send Email
Feb 7, 2006
8:01 pm
3311
That worked! Thanks for the advice. ... From: Carlos J. Quintero <carlosq@...> To: vsnetaddin@yahoogroups.com Sent: Monday, February 06, 2006 2:45:33...
Daniel Christensen
daniel_l_chr...
Online Now Send Email
Feb 7, 2006
11:18 pm
3312
hi, I have a problem created a Button/Item in the Context Menu of MS Outlook using VB.Net(Add-in)....
mauleen2006
Offline Send Email
Feb 8, 2006
9:03 am
3313
hi, How can i add a Transparent Icon to a Custom Button or Toolbar Button in Office through VB.net(Add-in)....
mauleen2006
Offline Send Email
Feb 8, 2006
9:05 am
3314
Hi, First you must find the correct CommandBar, and then use CommandBar.Controls.Add(...). You have several HOWTO articles on this section of my web site that...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 8, 2006
9:22 am
3315
Use the CommandBarButton.Picture and CommandBarButton.Mask properties. See method B here: HOWTO: Creating custom pictures for Visual Studio .NET add-ins...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Feb 8, 2006
9:25 am
Messages 3286 - 3315 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