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.
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 3691 - 3721 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
3693
Hi, At least using add-ins (not sure about VS SDK packages): 1) You can't. All addins commands go to the Addins category. 2) Commands will always appear in the...
MZ-Tools
carlos_j_qui...
Offline Send Email
Sep 5, 2006
8:30 pm
3695
On the Solution interface, there's a "Microsoft Internal Use Only" IsDirty property. Maybe that is of use? -Duncan ... if a ... if the ... this, but ... build ...
Duncan Lees
blu3_d0g
Offline Send Email
Sep 13, 2006
11:39 am
3696
My add-in needs to keep track of items selected in the Solution Explorer, so I've subscribed to SelectionEvents. This works fine for single file selections -...
Duncan Lees
blu3_d0g
Offline Send Email
Sep 13, 2006
11:50 am
3697
Hi, I have completed authoring a VS.Net 2005 add-in and it works fine in my development machine. I want to know what are the steps required to package it,...
Vinayak Kamat
vinayakkamat
Offline Send Email
Sep 19, 2006
1:59 am
3698
Hi, 1) By default it should be installed in C:\Program Files 2) OK 3) Install it for all users (rather than for the current user) using the...
Carlos Quintero
carlos_j_qui...
Offline Send Email
Sep 19, 2006
7:39 am
3699
Dear all, I use an application to invoke Visual Studio.Net, set some breakpoints for the code and attach to my application. Could anyone tell me how I can...
enusuki
Offline Send Email
Sep 20, 2006
10:48 am
3700
Debugger debugger = this.DTE.Debugger; return (debugger == null) ? false : (debugger.CurrentMode != dbgDebugMode.dbgDesignMode);...
mailhjain
Offline Send Email
Sep 21, 2006
12:21 am
3701
Did anybody have any luck accessing those Watch Windows? I'd like to at least get selected text... Thank you, Vlad...
vladfein
Offline Send Email
Sep 22, 2006
5:46 pm
3702
Hi, this problem concerns VS 2005. I havn't tried it yet with VS 2003. My addin has a tool window (in VS 2005 with no shim control) which contains a grid...
pjollans
Offline Send Email
Sep 22, 2006
7:18 pm
3703
I want to modify my addin's behavior based on the type of project that is open. I know how to test for a C# project, but this test fails if the project is an...
Eric Engler
englere.geo
Offline Send Email
Sep 23, 2006
11:58 am
3704
This book is supposed to be on MSDN but I can't find it. Does anyone know where I can get the PDF? I also tried ordering it from Bookpool and they said they...
Eric Engler
englere.geo
Offline Send Email
Sep 23, 2006
11:58 am
3705
No. VS 2005 lets you mix languages within the same ASP project, so you can have VB.NET and C# in the same project. Of course, it's a fair bet, that only one...
pjollans
Offline Send Email
Sep 23, 2006
12:39 pm
3706
For VS 2005 Web Sites you can have mixed languages, so you need to check for each ProjectItem. For the new VS 2005 Web Applications (see ...
MZ-Tools
carlos_j_qui...
Offline Send Email
Sep 23, 2006
1:42 pm
3707
See the Books section of my web site http://www.mztools.com/resources_vsnet_addins.htm so see the several ways to get that book. Best regards, Carlos J....
MZ-Tools
carlos_j_qui...
Offline Send Email
Sep 23, 2006
1:44 pm
3708
... Once I know what language it is, I want to know if it's an ASP.NET project. Is there an easy way to determine this without searching through the files...
Eric Engler
englere.geo
Offline Send Email
Sep 24, 2006
7:49 am
3709
For VS 2005 Web Site projects, get if Project.Object is of type VsWebSite.VsWebSite (you need to add the VsWebSite.Interop assembly) For VS 2005 Web...
MZ-Tools
carlos_j_qui...
Offline Send Email
Sep 24, 2006
8:04 am
3710
... You can use the Project.Kind property, which returns a UUID. Some of the possible values are given in VSLangProj.PrjKind, but this is only VB project, C#...
pjollans
Offline Send Email
Sep 24, 2006
8:23 am
3711
Hi, just for info, I have completely failed to hook into the F3 keypress, but have found it easy to hook into the "Edit.FindNext" command, which is usually the...
pjollans
Offline Send Email
Sep 25, 2006
9:47 pm
3712
Hi, please excuse me for asking a visual studio question which (probably) has nothing to do with Add-Ins. Recently, the bitmaps in toolbox window have almost...
pjollans
Offline Send Email
Sep 26, 2006
9:22 pm
3713
Have you tried the "Reset Toolbox" context menu of the Toolbox? ... (probably) ... group ... b=1 ... installation, but...
Carlos Quintero
carlos_j_qui...
Offline Send Email
Sep 27, 2006
8:40 am
3714
Hi, it is tricky, but possible to hook such keys if you use shim control (evenv with VS2005). You need to change the key processing routines of the shim. ...
Bonio Lopez
boniolopez
Offline Send Email
Sep 27, 2006
11:27 am
3715
Thanks Carlos, that worked. Phil...
pjollans
Offline Send Email
Sep 27, 2006
8:14 pm
3716
Hi, again, just for info. I have copied the feature for which I wanted to use function keys to the VS 2003 version of my Add-In, which of course uses a shim...
pjollans
Offline Send Email
Sep 28, 2006
7:26 pm
3717
Hi, I know that this issue has already been dealt with, but I have never got it working 100% correctly. In principle, I think that I am loading a bitmap...
pjollans
Offline Send Email
Oct 1, 2006
9:35 pm
3718
Hi Phil, The SetTabPicture function has several bugs and problems For VS 2005, use RGB = 255,0,255 instead of RGB=0,254,0. It seems that they changed it. See...
MZ-Tools
carlos_j_qui...
Offline Send Email
Oct 1, 2006
10:00 pm
3719
Hi Carlos, for VS 2005 using RGB=255,0,255 seems to fix the problem. For VS 2003 I am still having problems and I have played around with a few different...
pjollans
Offline Send Email
Oct 2, 2006
7:43 pm
3720
Hi Phil, I have reviewed my code and certainly I am using different code for 2003 and 2005. The latter uses magenta as I said. About 2003 I use a resource dll...
MZ-Tools
carlos_j_qui...
Offline Send Email
Oct 2, 2006
8:42 pm
3721
Hi Carlos my code is based on a TransparentBitmap class which I downloaded from this group a long time ago. From the file header it is actually by you, and a...
pjollans
Offline Send Email
Oct 2, 2006
10:06 pm
Messages 3691 - 3721 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