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...
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...
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 ...
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...
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...
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...
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...
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...
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...
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...
How about going about it using the UCOMIConnectionPointContainer approach? That tends to "fix" the situation when COM objects aren't firing events. Basically...
... 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...
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...
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...
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...
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...
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...
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...
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...
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...
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 ...
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,...
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...
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 ...
See the previous post I made which utilizes UCOMIConnectionPointContainer to handle events from COM objects Nathan Smith | Sr. Solution Developer Avanade Inc |...
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 ...
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....
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...
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...