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.

Messages

  Messages Help
Advanced
Messages 2278 - 2307 of 3874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2278
I'm not sure how you go about it from an automation standpoint, but the main differences between the desktop ResX files and those for the .NET Compact ...
Neil Cowburn
npcowburn
Offline Send Email
Feb 1, 2005
9:19 am
2279
How is that you are using a full name such as "MenuBar.Tools.AnkhSVN"? AFAIK, you must get the "Tools" command bar with: Dim objToolsCommandBar As CommandBar ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 1, 2005
9:31 am
2280
hi, im trying to get the project's full name by iterating the projects array. <code> EnvDTE::Projects *l_pProjects; l_pSolution->get_Projects(&l_pProjects); ...
avi_laviad
Offline Send Email
Feb 1, 2005
1:59 pm
2281
First of all, I'd suggest using CComPtr<T> so that: CComPtr<EnvDTE::Projects> l_pProjects; l_pSolution->get_Projects(&l_pProjects); Using it (everywhere!)...
Bielik, Robert
robert_bielik
Offline Send Email
Feb 1, 2005
2:07 pm
2282
hi, im trying to open a document from the documents list but it always returns null. this is my code: <code> // Find .dsp file name ...
avi_laviad
Offline Send Email
Feb 1, 2005
5:33 pm
2283
Many thanks, that helped me a lot. I have added a reference to that component to my Add-In project and have been able to create resource files for a smart...
Phil Jollans
pjollans
Offline Send Email
Feb 1, 2005
11:42 pm
2284
I'm experimenting with using the XML Help Provider to add some topics to the Dynamic Help window that link back to our web site and such. Since our add-in is...
Tim Farley
krelnik
Online Now Send Email
Feb 2, 2005
12:19 pm
2285
... command ... Yeah, thanks! I got it working now. -- Arild AnkhSVN, Subverting Visual Studio .NET: http://ankhsvn.tigris.org Blog: http://ankhsvn.com/blog ...
Arild Fines
arild_fines
Online Now Send Email
Feb 3, 2005
12:36 pm
2286
Hi, here's a problem that I have tripped up over repeatedly, but never bothered to investigate properly. If you have an ImageList control on a Form or...
pjollans
Offline Send Email
Feb 3, 2005
8:59 pm
2287
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the vsnetaddin group. File : /VS.NET...
vsnetaddin@yahoogroup...
Send Email
Feb 4, 2005
10:16 am
2288
Hi, I may have messed up my installation. Two separate users have reported an error message starting the Add-In. My suggestion was to register the Add-In dll...
Phil Jollans
pjollans
Offline Send Email
Feb 4, 2005
10:39 pm
2289
Hi Phil, ... By coincidence we recently stumbled across a setting in the setup project which seems to be the likely cause of one of our add-ins failing with ...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Feb 4, 2005
11:25 pm
2290
Hi Anna-Jayne, I tried changing the Register property to 'vsdrpCOMSelfReg', but I got the error message "The assembly 'MultiLang.dll' in project output group...
Phil Jollans
pjollans
Offline Send Email
Feb 5, 2005
8:20 am
2291
Hi Phil, ... Would I be right in guessing that your add-in is an assembly as opposed to a COM DLL? If so, that message makes sense....having not written a...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Feb 5, 2005
8:42 am
2292
hi'all , can any one tell how to add add-in /tools to vs.net,& how to make it appear in menu as well as toolbar bye...
rahulkale11
Offline Send Email
Feb 5, 2005
3:07 pm
2293
... The basic add-ins created by the Visual Studio .NET add-in wizard do this by default. If you want to learn about add-in development I strongly recommend...
Anna-Jayne Metcalfe
justanna69
Offline Send Email
Feb 5, 2005
4:35 pm
2294
thanks for suggestion regds ... The basic add-ins created by the Visual Studio .NET add-in wizard do this by default. If you want to learn about add-in...
Rahul Kale
rahulkale11
Offline Send Email
Feb 6, 2005
1:48 pm
2295
hi'all, can someone hlp me to create add-in (add external tool)to vs.net & also how to make it appear on toolbar & menu. bye ... Do you Yahoo!? Yahoo! Search...
Rahul Kale
rahulkale11
Offline Send Email
Feb 6, 2005
1:49 pm
2296
hi, i got an add-in that creates new .cpp and .h file with templates in them. i want that after i save the files in the project to get them into the VSS. how...
avi_laviad
Offline Send Email
Feb 6, 2005
4:48 pm
2297
... If I recall properly, it is the Register = vsdrpCOM property of the Primary Output from <add-in>. ... I spent a whole frustrating month dealing with VS.NET...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 7, 2005
10:07 am
2298
hi, where can i find dll/.h files of VSSDatabase? Avi....
avi_laviad
Offline Send Email
Feb 9, 2005
4:25 pm
2299
I'm developing an add-in for VS.NET 2003 (in C#) that automates building the various solutions and projects I'm responsible for. In theory, it should open, ...
Korth, Matthew
korthmat
Offline Send Email
Feb 9, 2005
5:58 pm
2300
... [snip] Nevermind... :P I finally figured this out--looks like EnvDTE.DTE.Solution.Open doesn't get along with relative paths. "\smi_dnet\conv\slib" caused...
Korth, Matthew
korthmat
Offline Send Email
Feb 9, 2005
7:12 pm
2301
Thanks Carlos, when I have time, I will look at inno setup. Phil ... From: Quintero Vivar, Carlos Javier To: vsnetaddin@yahoogroups.com Sent: Montag, 7....
Phil Jollans
pjollans
Offline Send Email
Feb 9, 2005
9:31 pm
2302
hi, from where can i get the CodeModel obj? 10x, Avi...
avi_laviad
Offline Send Email
Feb 10, 2005
10:03 am
2303
From ProjectItem.FileCodeModel or from Project.CodeModel, depending on the root that you need. Best regards, Carlos J. Quintero MZ-Tools 4.0: Productivity...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 10, 2005
10:06 am
2304
thanks man, do you know by the way how can i get the VSS object? ... on the ... Footer ... sus destinatarios y pueden contener informacion confidencial. Si ...
avi_laviad
Offline Send Email
Feb 10, 2005
4:14 pm
2305
DTE.SourceControl Best regards, Carlos J. Quintero MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET You can code, design and document much faster. ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 10, 2005
4:18 pm
2306
hi, i want to create a function with the FileCodeModel and put a comment for the function. the problem is that i want to make a comment like this: ...
avi_laviad
Offline Send Email
Feb 10, 2005
5:57 pm
2307
yeah, i knwo this object, the problem with this object is that i can only do CheckOut's. i can't do this functions - CheckIn, AddToSourceControl and more... do...
avi_laviad
Offline Send Email
Feb 10, 2005
5:59 pm
Messages 2278 - 2307 of 3874   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help