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
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...
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...
Feb 2, 2004 9:20 am
I think that the library is C:\Program Files\Microsoft Visual Studio .NET\Common792;IDE\PublicAssemblies\VSLangProj.dll Check if it appears in the Add Reference...
1595
Greg Woolley
gregwoolley
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...
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...
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...
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
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...
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...
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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...