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 1591 - 1620 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1591
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...
Greg Woolley
gregwoolley
Offline Send Email
Feb 1, 2004
7:51 pm
1592
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...
drathofold
Online Now Send Email
Feb 2, 2004
6:02 am
1593
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 ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 2, 2004
9:09 am
1594
I think that the library is C:\Program Files\Microsoft Visual Studio .NET\Common7\IDE\PublicAssemblies\VSLangProj.dll Check if it appears in the Add Reference...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 2, 2004
9:20 am
1595
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...
Greg Woolley
gregwoolley
Offline Send Email
Feb 2, 2004
2:58 pm
1596
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 2, 2004
3:56 pm
1597
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 2, 2004
3:59 pm
1598
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...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 2, 2004
4:13 pm
1599
I have the third and the fourth, and they both provide good value. Best regards, Manfred. ... Manfred Lange, http://www.agileutilities.com...
Manfred Lange
mlangehpcom
Offline Send Email
Feb 2, 2004
4:37 pm
1600
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 2, 2004
4:47 pm
1601
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...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 2, 2004
5:33 pm
1602
How about going about it using the UCOMIConnectionPointContainer approach? That tends to "fix" the situation when COM objects aren't firing events. Basically...
Nathan Smith
nathanysmith
Offline Send Email
Feb 2, 2004
6:28 pm
1603
... 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...
Arild Fines
arild_fines
Online Now Send Email
Feb 2, 2004
7:27 pm
1604
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...
pjollans
Offline Send Email
Feb 2, 2004
8:36 pm
1605
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...
Phil Jollans
pjollans
Offline Send Email
Feb 2, 2004
10:26 pm
1606
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...
Kalpana Sanghrajka
ksangh
Offline Send Email
Feb 2, 2004
11:43 pm
1607
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...
Greg Woolley
gregwoolley
Offline Send Email
Feb 2, 2004
11:47 pm
1608
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...
lukaptr
Offline Send Email
Feb 3, 2004
10:06 am
1609
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...
aakil786
Offline Send Email
Feb 3, 2004
11:09 am
1610
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...
Evgeniy Shpika
evgeniy_shpika
Offline Send Email
Feb 3, 2004
12:26 pm
1611
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...
Evgeniy Shpika
evgeniy_shpika
Offline Send Email
Feb 3, 2004
2:50 pm
1612
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 ...
dsha1980
Offline Send Email
Feb 3, 2004
5:33 pm
1613
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,...
Kirk Fertitta
kirkfertitta
Offline Send Email
Feb 3, 2004
5:35 pm
1614
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...
Nathan Smith
nathanysmith
Offline Send Email
Feb 3, 2004
5:38 pm
1615
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 ...
Evgeniy Shpika
evgeniy_shpika
Offline Send Email
Feb 3, 2004
5:47 pm
1616
See the previous post I made which utilizes UCOMIConnectionPointContainer to handle events from COM objects Nathan Smith | Sr. Solution Developer Avanade Inc |...
Nathan Smith
nathanysmith
Offline Send Email
Feb 3, 2004
6:01 pm
1617
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 ...
Greg Woolley
gregwoolley
Offline Send Email
Feb 3, 2004
7:21 pm
1618
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....
varchar20
Offline Send Email
Feb 3, 2004
11:05 pm
1619
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...
Kalpana Sanghrajka
ksangh
Offline Send Email
Feb 4, 2004
12:53 am
1620
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...
Kalpana Sanghrajka
ksangh
Offline Send Email
Feb 4, 2004
1:03 am
Messages 1591 - 1620 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