Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vsnetaddin · Visual Studio.NET Add-ins

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 2365
  • Category: Development
  • Founded: Jul 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1591 - 1620 of 3884   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1591 Greg Woolley
gregwoolley Send Email
Feb 1, 2004
7:51 pm
Hello, I'm trying to dock and tabbify tool windows. The tool windows will dock together yet I'm unable to get .Add(win3) toolwindow to tabbify as a group with...
1592 drathofold Send Email Feb 2, 2004
6:02 am
About a month ago I read Inside Microsoft® Visual Studio® .NET 2003 By Brian Johnson, Craig Skibo and was able to create an add-in from a macro. Now when...
1593 Quintero Vivar, Carlo...
carlos_j_qui... Send Email
Feb 2, 2004
9:09 am
Hi, I think that the book "Inside Visual Studio .Net 2003", MS Press, by Craig Skibo and others says something about this, not sure if it is a bug or not ...
1594 Quintero Vivar, Carlo...
carlos_j_qui... Send Email
Feb 2, 2004
9:20 am
I think that the library is C:\Program Files\Microsoft Visual Studio .NET\Common7&#92;IDE\PublicAssemblies\VSLangProj.dll Check if it appears in the Add Reference...
1595 Greg Woolley
gregwoolley Send Email
Feb 2, 2004
2:58 pm
Hello all, which are the most recommended books on VS.Net Addins? At the moment these are on my list of potentials, I'd appreciate anyone's thoughts on these...
1596 vsnetaddin@yahoogroup... Send Email Feb 2, 2004
3:56 pm
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...
1597 vsnetaddin@yahoogroup... Send Email Feb 2, 2004
3:59 pm
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...
1598 Quintero Vivar, Carlo...
carlos_j_qui... Send Email
Feb 2, 2004
4:13 pm
I have only read "Inside Microsoft Visual Studio.Net 2003" and I think that it is a must have. Regards, Carlos J. Quintero (.NET MVP) _____ From: Greg Woolley...
1599 Manfred Lange
mlangehpcom Send Email
Feb 2, 2004
4:37 pm
I have the third and the fourth, and they both provide good value. Best regards, Manfred. ... Manfred Lange, http://www.agileutilities.com...
1600 vsnetaddin@yahoogroup... Send Email Feb 2, 2004
4:47 pm
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...
1601 Quintero Vivar, Carlo...
carlos_j_qui... Send Email
Feb 2, 2004
5:33 pm
No help, but I have entered a KB Issue Q00008 in the ISSUES folder of the Knowledge Base (Files section). MS monitors it from time to time.... Regards, Carlos...
1602 Nathan Smith
nathanysmith Send Email
Feb 2, 2004
6:28 pm
How about going about it using the UCOMIConnectionPointContainer approach? That tends to "fix" the situation when COM objects aren't firing events. Basically...
1603 Arild Fines
arild_fines Send Email
Feb 2, 2004
7:27 pm
... and ... Mastering Visual Studio.NET is a good book, but it doesn't really cover addins. Inside Microsoft Visual Studio.NET is pretty good, though. I...
1604 pjollans Send Email Feb 2, 2004
8:36 pm
My Add-In sometimes causes very high memory usage. One user has just reported Visual-Studio memory usage going up to 500 MB. I don't think this causes any...
1605 Phil Jollans
pjollans Send Email
Feb 2, 2004
10:26 pm
Hi, the particular user who has this effect has now given me more precise information. The problem actually occurs during the reverse operation to the one I...
1606 Kalpana Sanghrajka
ksangh Send Email
Feb 2, 2004
11:43 pm
Hello All, The following issues discussed on VSNetAddins, as bugs or suggestions have been logged as bugs on our side for the Visual Studio team to look at for...
1607 Greg Woolley
gregwoolley Send Email
Feb 2, 2004
11:47 pm
Hi again, thanks to those people for your replies about the books, I'll go ahead and purchase them. I have another question on how to get started. I'm very...
1608 lukaptr Send Email Feb 3, 2004
10:06 am
Hi, I am trying to get the types of the parameters of methods. I succeeded in the access to them using the interface CodeFunction.Parameters.Item[i] but I...
1609 aakil786 Send Email Feb 3, 2004
11:09 am
Does anyone know of any any sample code to get the Data Connection connectionstring in the server explorer. My scenario is as follow, one right click on a...
1610 Evgeniy Shpika
evgeniy_shpika Send Email
Feb 3, 2004
12:26 pm
I think that it'll help you: EnvDTE.CodeParameter p = _envDTEMethod.Parameters.Item(1); String paramName = p.Type.CodeType.Name; //here you get name of your...
1611 Evgeniy Shpika
evgeniy_shpika Send Email
Feb 3, 2004
2:50 pm
Hi All! I'm trying to get solution's namespaces tree, one way that I found is through EnvDTE.Solution.Projects collection but it's too hard and takes a lot of...
1612 dsha1980 Send Email Feb 3, 2004
5:33 pm
Thanks to all who responded to my post. Nathan, what do you mean under the situation when COM object don't fire events? I never heard about it. How can I use ...
1613 Kirk Fertitta
kirkfertitta Send Email
Feb 3, 2004
5:35 pm
We have a C# add-in (VS.NET2003) that is manipulating code within a C++ project. We do lots of name-based lookups for VCCodeElements such as classes,...
1614 Nathan Smith
nathanysmith Send Email
Feb 3, 2004
5:38 pm
Something like this: Basically you need to look up the IID for _CommandBarButtonEvents in this case and implement the interface in the sink class private void...
1615 Evgeniy Shpika
evgeniy_shpika Send Email
Feb 3, 2004
5:47 pm
Hi All! I have generated by add-in wizard class Connect.cs. There I'm triying to add new submenu to tools menu and add a menu item to this submenu. It works ...
1616 Nathan Smith
nathanysmith Send Email
Feb 3, 2004
6:01 pm
See the previous post I made which utilizes UCOMIConnectionPointContainer to handle events from COM objects Nathan Smith | Sr. Solution Developer Avanade Inc |...
1617 Greg Woolley
gregwoolley Send Email
Feb 3, 2004
7:21 pm
Hello, anyone care to show me how to recode the VBScript below in Visual Basic.net. I've created a Visual Basic.Net "windows application project", added a ...
1618 varchar20 Send Email Feb 3, 2004
11:05 pm
To cause the whole tree to referesh would be acceptable, but it would be even better if I could just refresh the currently selected node programatically (i.e....
1619 Kalpana Sanghrajka
ksangh Send Email
Feb 4, 2004
12:53 am
Hi Greg, Here's a quick code snippet that shows how to create an instance of EnvDTE in a console VB .Net application. Also, MSDN is a good resource for...
1620 Kalpana Sanghrajka
ksangh Send Email
Feb 4, 2004
1:03 am
Hello Greg, For getting started with Extending VS .Net, an easy logical move from VB Script would be experimenting with VSMacros (Alt+F8) in VS .Net to view...
Messages 1591 - 1620 of 3884   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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