Hi Craig, Yes, I have something to add: Phil is right. The problem only happens with VS.NET 2002, not with VS.NET 2003. I discovered that too last night, the ...
Sorry, it should be objType = Type.GetTypeFromCLSID(New Guid("dummyCLSID")) Carlos ... De: Quintero Vivar, Carlos Javier Enviado el: viernes, 01 de julio de...
Does anybody have a sure way to identify the VS 2005 beta 2 version from an Add-In, which will NOT match the VS 2005 final release? Is there some version...
... The version number will definitely change between beta 2 and RTM, but there's no guarantee what the RTM version number will be. So you could check for...
Hi Bob, how do I actually get this version number. DTE.Version just returns 8.0, so I presumably have to do something a bit more complicated. Phil ... From:...
For the VS 2005 Beta 2 version of my Add-In, I have just changed the CLSCompliant attribute in AssemblyInfo.vb to <Assembly: CLSCompliant(False)> to get rid of...
ClsCompliance is of no interest to you. It is a contract for anyone using your dll - an addin is not used by any other projects. Thomas...
Thomas Tomiczek
t.tomiczek@...
Jul 2, 2005 7:40 pm
2712
Carlos, If SubType problem wasn't bad enough, here's what I've dig up on June CTP. Not only that we can't get project item types anymore, but Project's...
I've updated the problem description. Problem doesn't seem to be as sever as I originally thought but still bad IMHO. It also appears to apply to Beta 2 as...
I would read the CLSID of HKEY_CLASSES_ROOT\VisualStudio.DTE.8.0, which currently seems to be BA018599-1DB3-44f9-83B4-461454C84BF8, then read the registry...
Hi, Thanks for the info, I am now working with Windows project types and project item types and next week surely I will work with Web project types. I'll keep...
Those Solution Explorer icons seems to be fixed in June CTP. Here are the commands that still have old style, i.e. low color, icons: Project.CopyProject ...
... Ah, I didn't check to see what it returned. I'm not aware of a DTE method/property that returns a more detailed version. Does the FullName property return...
Hi, This page in MSDN: http://msdn.microsoft.com/library/default.asp?url=/library/en- us/cpref/html/frlrfsystemcomponentmodeldesignicomponentchangeservicec ...
I don´t know the exact answer, but since Windows Forms and Web Forms are so different, it wouldn´t surprise me if that only works with Windows forms, if any....
hi all, i am using the IComponentChangeService for detecting the deletion of control in the page. But one i switch between the pages i am getting the...
hi all, i am using the IComponentChangeService for detecting the deletion of control in the page. But one i switch between the pages i am getting the...
Hi, For those of you working with VS 2005, the June CTP solves some problems of Beta 2, such as the annoying bugs creating commands with custom pictures or the...
I finally got around to testing for the beta version. This is how I did it: Dim EnvDtePath as String = oDte.FullName Dim EnvDteVersInfo As FileVersionInfo =...
I am working with normal extensibility automation from C# to implement an IDTWizard framework that builds fairly far out from the IVSN2k3 wizard library; one...
hi all, i have created an addin using the Visual studio extensibility project and i am hosting a tool window in the Shim control provided by MS. In my system i...
Hi, You need to register for COM: - The .NET assembly dll of the add-in, using regasm.exe (or equivalent) - The ActiveX dll of the shim control, using...
I'm starting a project doing use the automation and the DTE. I'm trying to create a new VB WinForm project using the template. VS2005 apparently changed the...
Another problem ive run into with this project is that I'm not able to find the generated code files of a file. Again, I'm using 2005 June CTP to do this and...
I think I can get the Form1.Designer.vb file without problems, but in any case, you shouldn´t touch it. To manipulate controls, see this article of mine: ...
Hi, I am trying to get the current selection in Class view for VB projects using DTE.SelectedItems but the selection count is always zero. I've also tried...
Hi Paul, See: http://blogs.msdn.com/craigskibo/archive/2003/09/22/51662.aspx <http://blogs.msdn.com/craigskibo/archive/2003/09/22/51662.aspx> Best regards, ...