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 3560 - 3589 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3560
Hi, I am creating an addin for Word. I made it with the help of extensibility project of VS2003. when I am building it I am getting an build error(COM Interop...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
May 2, 2006
1:12 pm
3561
Surely that's a reference used in your add-in project, but I have never heard about it... Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 2, 2006
5:57 pm
3562
Hi, Everybody knows that when you have a winform or a webform in design mode and the property window visible, each time you select an object (control, picture,...
staikfrite
Offline Send Email
May 3, 2006
8:38 am
3563
Hi Stephane, The ISelectionService should notify you the selection changes. The properties window is updated automatically. Which is especifically your...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 3, 2006
8:46 am
3564
Hi Carlos, All I want to do is the following: 1) you create your add-in with the assistant. You say that you want a "Tools" menu item. 2) you add a winform. 3)...
staikfrite
Offline Send Email
May 3, 2006
9:32 am
3565
Hi, 1) You should use a toolwindow instead of a windows form. VS does not like modeless Windows forms, only likes modal forms. 2) The ISelectionService has...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 3, 2006
9:49 am
3566
Hi guys, I am looking for a way to create solutions and projects outside of Visual Studio. Any idea? Also, I need to add to and remove files from the projects...
Christian Weyer
cweyer74
Offline Send Email
May 3, 2006
6:05 pm
3567
Hi Christian, See my article: HOWTO: Automating Visual Studio .NET from outside the IDE http://www.mztools.com/articles/2005/MZ005.htm Best regards, Carlos J....
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 3, 2006
6:10 pm
3568
Hi Carlos, thanks! I already knew it ;) Do you happen to have a sample in .NET - aka 'strongly typed'? Thanks, Christian...
Christian Weyer
cweyer74
Offline Send Email
May 3, 2006
6:42 pm
3569
You can add a reference to EnvDTE.dll. To create an instance you can use Activator.CreateInstance(...) instead of CreateObject and cast the result object to...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 3, 2006
10:18 pm
3570
Hi Carlos, via the COM registration info in the registry the ProgID "VisualStudio.DTE" points to devenv.exe which is an unmanaged piece of code. You can verify...
Christian Weyer
cweyer74
Offline Send Email
May 4, 2006
10:12 am
3571
Hi Christian, Visual Studio is an unmanaged application (not .NET-based except some portions) and therefore it can be managed only through COM Automation. You...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 4, 2006
10:33 am
3572
There you go - wonderful! Thanks, as always :) Cheers, Christian ... some portions) and therefore it can be...
Christian Weyer
cweyer74
Offline Send Email
May 4, 2006
10:48 am
3573
Hi all, I have posted some new articles with bugs/problems of VS 2005 for add-in developers on my web site. The first one is of interest for everybody: PRB:...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 4, 2006
3:18 pm
3574
HI, I am new to writing add-ins, I am trying to access $(SolutionDir) and $(InputName) Visual Studio variables within my add-in, and having a hard time...
Mark
zoidberg2000
Offline Send Email
May 5, 2006
12:04 pm
3575
... In my case, I needed to evaluate $(TargetPath). What I found was that you needed to handle it differently depending on the kind of project (C#, VB.NET,...
Korth, Matthew
korthmat
Offline Send Email
May 8, 2006
7:59 pm
3576
Hello Here is the problem : I have a large solution with plenty of projects and folders. When ever I search something, I get results like ...
avi_hrsh
Offline Send Email
May 10, 2006
12:13 am
3577
Hi, is it possible to programatically access (change) options on the VS option pages? Thanks,...
Bonio Lopez
boniolopez
Offline Send Email
May 11, 2006
2:55 pm
3578
Yes. Use DTE.Properties. For example: Dim props As EnvDTE.Properties props = DTE.Properties("Environment", "Documents") Dim prop As EnvDTE.Property =...
Peter Macej
absurdisti
Offline Send Email
May 11, 2006
3:01 pm
3579
Just in case somebody is interested in participating: Submit your entry in one (or both!) of the following contest categories: - Add-ins (Templates, Starter...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 17, 2006
1:46 pm
3580
Hi, I posted some weeks ago about Visual Studio 2005 Web Application Projects, a new kind of Web projects for VS 2005 with the old model of VS.NET 2003 Web...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 17, 2006
2:01 pm
3581
I added App.config to my add-in project, and configured in it some settings for Web Services Enhancement 2.0 component, but none of these settings seem to take...
dennis_59542
Offline Send Email
May 18, 2006
2:29 pm
3582
Hi, I am able to get hold of an IDesignerHost interface for a web form as Carlos has described in http://www.mztools.com/articles/2005/MZ004.htm. Using the...
Phil Jollans
pjollans
Offline Send Email
May 21, 2006
8:51 pm
3583
Hi Phil, I donīt have the answer to this question but it happens that I have my own problem that when solved it may help you too. I have noticed that on the...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 21, 2006
11:12 pm
3584
I'm writing a native c++ addin for VS 2003, but I can't figure out how to get a ptr to the VCProject or VCProjectEngine interfaces. Does anyone have an example...
krissieboy2001
Offline Send Email
May 22, 2006
6:49 am
3585
Not sure, but try casting EnvDTE.Project.Object() to VCProject. Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio You can code,...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 22, 2006
8:01 am
3586
Carlos, any ideas about this one? Thanks...
dennis_59542
Offline Send Email
May 22, 2006
11:35 am
3587
Hiya, ... You can get hold of VCProjectEngine like this: EnvDTE::ProjectsPtr ptrProjects = pDTE->GetObject(L"VCProjects"); ...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
May 22, 2006
12:06 pm
3588
Not many ideas, otherwise I would have answered. I am not familiar with Web Services Enhancement 2.0, but AFAIK, although I may be very wrong, the config file...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
May 22, 2006
12:13 pm
3589
... with Web Services Enhancement 2.0, but ... exes, not by DLLs, so first confirm this ... This is correct. In .NET 1, if you use the ...
timores2
Offline Send Email
May 23, 2006
8:01 am
Messages 3560 - 3589 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