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...
Show off your group to the world. Share a photo of your group with us.

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 3848 - 3877 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3848
Interesting. Since this group is for people who write .NET based addins for vs.net you could also create your web service using, well, .NET ;) But I digress. ...
Joshua
elektrofetish
Offline Send Email
Jan 1, 2008
4:52 pm
3849
The return value from VCProject::get_Platforms is incorrect in my C++ VS 2005 addin. Can someone tell me what I'm doing wrong? ...
greeneyes_2399
Offline Send Email
Jan 3, 2008
12:31 am
3850
Wouldn't you know it... as soon as I posted my message, a light bulb went off in my head. The problem is the cast between EnvDTE::Project * and...
greeneyes_2399
Offline Send Email
Jan 3, 2008
12:52 am
3851
I've created a add-in in VS.NET 2005 using C#. The add-in loads a tool window OnConnection and it contains a User Control with input text fields and a "Login"...
ngo_udhs
Offline Send Email
Jan 14, 2008
7:12 pm
3852
Hi Ngo, this isn't so much an Add-In problem, as a general .NET programming question. If the button is on a UserControl, then the handler for the button click...
Phil Jollans
pjollans
Offline Send Email
Jan 14, 2008
9:56 pm
3853
Phil, I understand that event-handling should be done in the Form which it was created. However is it possible for the Exec method in the Connect.cs class to...
ngo_udhs
Offline Send Email
Jan 15, 2008
2:54 pm
3854
This Addin will sort the attributes of any well formed XML such as XAML and other XML files. Find it on my blog - http://blog.mikeunderhill.com...
munderhillx
Offline Send Email
Jan 15, 2008
5:41 pm
3855
Hello all, I am writing a visual tool that would create custom classes, currently it uses CodeDOM. I am stuck a point where I need to parse the code for...
rishiparkhe
Offline Send Email
Feb 5, 2008
12:19 pm
3856
In my opinion, CodeDOM, while very powerful is also very frustrating to work with. I also have created a code generator; however the code for the classes that...
Joshua
elektrofetish
Offline Send Email
Feb 5, 2008
5:09 pm
3857
Hi Joshua, Thanks for your comments. I was also thinking about implementing my own graph for the code to be generated. And agree that CodeDOM is very powerful,...
Rishikesh Parkhe
rishiparkhe
Offline Send Email
Feb 8, 2008
2:55 am
3858
Hello I create a stand MSI file from a Deployment project associated to my addin. The installs for all users - the MSI file is invoked via msiexec with...
iangreenhill
Offline Send Email
Feb 15, 2008
3:10 pm
3859
Our addin only adds the LM key, and works fine AFAIK. Are you sure you need to specify the CU key as well? -Duncan...
Duncan Lees
blu3_d0g
Offline Send Email
Feb 18, 2008
10:48 am
3860
Hello Thank you for the tip, that's solved the problem. As we want the addin to install for all users as well as single users is to add a NOT AdminUser...
iangreenhill
Offline Send Email
Feb 18, 2008
3:34 pm
3861
To anyone who might be interested. I've just released a release candidate of my new addin, .netSavant and wanted to share with the group how much the various...
Joshua
elektrofetish
Offline Send Email
Feb 23, 2008
4:38 pm
3862
I heartily agree with your praise for Carlos, but I havn't heard from him in this group for a long time. On his web site...
Phil Jollans
pjollans
Offline Send Email
Feb 23, 2008
5:02 pm
3863
Hi All, I encounterd a problem which i fail to find a solution. I am trying to get the Class name from a TextPoint (the class name of the function which the...
miri_avi
Offline Send Email
Mar 30, 2008
6:03 pm
3864
I'm responsible for an add-in that we use to allow our analysts (who are actually accountants for the most part) to do a build, so the programmers don't get...
korthmat
Online Now Send Email
Apr 23, 2008
8:52 am
3865
I am implementing the package implementation and I need to be able to modify all the references of either a given class or method. Is there any way I can do it...
Neeraj Agrawal
agrawal_neeraj
Offline Send Email
Apr 24, 2008
10:32 am
3866
Hello, I wish to create a custom document window in my VS2005 add-in. It looks like I need to create a window via CreateDocumentWindow. I've seen examples on...
Jeff B
jeffbee42
Offline Send Email
May 21, 2008
12:30 am
3867
I can't get this to work. It's registered as present and checked in the Add-in Manager. But the Script Outline window does not appear. When I started a new...
Kevin McFarlane
kaa_mcfarlane
Offline Send Email
Jun 5, 2008
9:51 am
3868
Greetings, I've an add-in that loads fine but shown as 'dimmed' or 'disabled' in Tools menu. Here is the OnConnect function implementation: Try ...
noha_assem2030
Offline Send Email
Jun 8, 2008
12:18 pm
3869
I want to run the post build command (as configured in the project settings) for a specific configuration in a C++ project. I do have the VCConfiguration...
hauptmannp
Offline Send Email
Jun 12, 2008
2:01 pm
3870
Enumerate the Tools collection on your object, and look for the tool that supports the VCPostBuildEventTool interface. -Duncan...
Duncan Lees
blu3_d0g
Offline Send Email
Jun 13, 2008
1:55 pm
3871
i've an add-in to document classes in XML style, i'm trying to determine the type of a CodeElement as follows: Dim fcmFileCodeModel As FileCodeModel = ...
noha_assem2030
Offline Send Email
Jun 22, 2008
9:31 am
3872
... determine ... fcmFileCodeModel.CodeElementFromPoint(DTE.ActiveDocument.Selection.Activ\ \ ... I've found the solution in the following link: HowTo: Get a...
noha_assem2030
Offline Send Email
Jun 22, 2008
12:40 pm
3873
hi @all, is it possible to create a command from CommandControlType "vsCommandControlTypeMRUButton"? The last information that I found in the internet ist a...
tom_mue
Offline Send Email
Jul 9, 2008
8:22 pm
3874
I want to be able to display my file types in the common file dialogs in my Visual Studio 2005/2008 C++ addin. What is the best way to achieve this? Cheryl...
greeneyes_2399
Offline Send Email
Jul 18, 2008
3:42 pm
3875
Hi, I am writing a Visual Studio plugin and have created a new solution programmatically (C#): // Assuming applicationObject is a valid DTE2 instance. ...
morten795
Offline Send Email
Jul 24, 2008
5:09 pm
3876
Hi, I want to make an addin which reads an XML code in the center Screen. When the addin is clicked it should call an Validator Engine which checks the XML...
parasuraman.ramakrish...
parasuraman....
Offline Send Email
Oct 16, 2008
7:54 pm
3877
Hi guys, Very quiet on ths group these days, but hopefully some people are still listening... :-) I've just released a plugin for VS 2005/2008 that you may...
Jason Williams
zotwilliams
Offline Send Email
Apr 10, 2009
7:46 am
Messages 3848 - 3877 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