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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2448 - 2477 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2448
I'm trying to create an add-in but I can't seem to get the debbugger to work. I developed an app and when I hit f5 I get a new VS.net instance but no add-in is...
yg_jayrod_84
Offline Send Email
Apr 1, 2005
2:05 pm
2449
Hi hun, ... All you should need to do in a case like this is open the Add-in Manager (on the Tools menu) and chck the box to load your add-in. If you set a ...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Apr 1, 2005
8:10 pm
2450
So from beginning to end (end being me at a break point) should be.... Open up a new add-in project. Complete the wizard describing my project. Set a...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 1, 2005
8:42 pm
2451
Hi Jerrad, ... That's about it. You do also have to make sure the add-in is registered with Visual Studio .NET (unlike previous versions, VS.NET doesn't have...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Apr 1, 2005
9:28 pm
2452
Hiya, We've an (unmanaged C++) Visual Studio NET 2002/2003 add-in which adds a couple of pages to Visual Studio's Options Dialog. That all works fine, but we'd...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Apr 4, 2005
4:41 pm
2453
Hi all, My customer asked me to find what is the best solution for obfuscators or other tools to protect .NET assemblies. I did evaluate several including...
Shamil Salakhetdinov
shamil_salak...
Offline Send Email
Apr 4, 2005
7:50 pm
2454
Hi, I'm totally new in developing add-ins but even so I've found them very usefull.. My idea is to send some Find query using ...
adnancausevic
Offline Send Email
Apr 4, 2005
8:31 pm
2455
Hi Shamil, We are using Xenocode (http://www.xenodcode.com) which is fully configurable in that you can specify the extent of the obfuscating down to...
Andy Maggs
andy_maggs65
Offline Send Email
Apr 4, 2005
8:37 pm
2456
Currently, our add-in works in VS 2002 and VS 2003. I'm trying to make it work also in VS 2005. No separate build, one version for all 2003, 2003 and 2005....
Peter Macej
absurdisti
Offline Send Email
Apr 5, 2005
1:55 pm
2457
Hi Peter, When we asked Microsoft about using an addin developed in 2002 in 2003 they said there should be no problem but could not say the same for 2005 as...
Andy Maggs
andy_maggs65
Offline Send Email
Apr 5, 2005
2:12 pm
2458
I've found a pretty simple but efficient solution: Window win = applicationObject.Windows.Item (EnvDTE.Constants.vsWindowKindFindResults1); TextSelection sel =...
adnancausevic
Offline Send Email
Apr 5, 2005
8:51 pm
2459
Hi Andy, Thank you for your advice! I did download and I did evaluate XenoCode this morning. It worked OK and it was easy and intuitive in use. It's purchased...
Shamil Salakhetdinov
shamil_salak...
Offline Send Email
Apr 5, 2005
9:10 pm
2460
I have at last been able to display a toolbar button for my AddIn for Visual Studio .NET 2003. However when I click on it then after the AddIn has executed...
franzaklein
Offline Send Email
Apr 6, 2005
10:52 am
2461
... Two things to check. What's in the implementation of your QueryStatus() function in your add-in? That is where an add-in tells the environment whether a ...
Tim Farley
krelnik
Offline Send Email
Apr 6, 2005
4:19 pm
2462
Hi, Through my extension dll, I would like to disable all the break points and re-enable them later. Currently I am doing that using EnvDTE interface (VSA...
Giri Reddy
busygiri
Offline Send Email
Apr 7, 2005
9:54 am
2463
Hi, I have written following code in my VisualStudio.NET addin to retrieve the line number where the cursor is placed. TextSelection selection =...
Krishna Prasad
krishnajprasad
Offline Send Email
Apr 7, 2005
1:23 pm
2464
Thanks for the answer, Andy. Separate version seems to be the way to go. I wanted to avoid it since all versions will be exactly the same. Using separate build...
Peter Macej
absurdisti
Offline Send Email
Apr 7, 2005
1:38 pm
2465
I'm writing an add in that will add a method to a class that already exists. Is there a way to do this? I know how to create a brand new code file with ...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 7, 2005
6:56 pm
2466
... Yes, our product does this. Look for FileCodeModel in the MSDN help. This is a hierarchy of objects that will help you find where specific definitions are...
Tim Farley
krelnik
Offline Send Email
Apr 7, 2005
10:57 pm
2467
Has anyone out there successfully used VCProjectEngineEvents to catch project events (ItemAdded, ItemRemoved etc.) on Visual C++ (VS2003) projects? Although...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Apr 8, 2005
9:14 am
2468
I have checked all of those line of code and everything is exactly as it should be but still no effect. ... to ... complex ... ...
franzaklein
Offline Send Email
Apr 8, 2005
9:38 am
2469
Ok, i'm trying to debug my add in and when I hit f5 it builds and then up pops a new vs.net <http://vs.net> instance. But the add-in isn't loaded and isn't...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 8, 2005
2:26 pm
2470
I created an addin for VS and wanted to create a new menu in the main menubar, next to the tools bar. I used the following code, but my new menu will not...
mstec01
Offline Send Email
Apr 8, 2005
5:05 pm
2471
I wrote an Add-in for VS.NET 2003 that is throwing the following exception: The exception "UnauthorizedAccessException" has occurred in "mscorlib" Additional...
dlgproc
Offline Send Email
Apr 8, 2005
6:36 pm
2472
Make sure you have installed your add-in. This will add entries into the Window registry that will let VS.net know there is a new add-in for it to load and...
dlgproc
Offline Send Email
Apr 8, 2005
6:36 pm
2473
Thanks... I didn't figure in the registry thing. I figured if I actually did a setup on it that it would interfere with future debugging. ... [Non-text...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 8, 2005
6:56 pm
2474
Try adding menu.Visible=True after creating it. Best regards, Carlos J. Quintero MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET You can code, design...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Apr 11, 2005
10:33 am
2475
How should a new test suite be created if you select an assembly and expect it to stub the test out for you? When I write my test stuff I have it set up like...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 11, 2005
12:17 pm
2476
I'd like to be able to create projects and add them to a solution. I also need to iterate through them and find csharp files in them. [Non-text portions of...
jerrad anderson
yg_jayrod_84
Offline Send Email
Apr 11, 2005
12:42 pm
2477
Hi, You can use EnvDTE.Solution.AddFromFile or EnvDTE.Solution.AddFromTemplate. Check the docs. To iterate you use Solution.Projects. The language of a...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Apr 11, 2005
1:49 pm
Messages 2448 - 2477 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