| Thread | Last Post | Replies |
|
| Macros and formatting | 30 Nov 2005 21:29 GMT | 1 |
I'm not sure if this is an issue with the settings in the IDE or not but I have a macro that creates a new class and adds it to the startup project. The problem is that the text is not formatting correctly. I am using the vbTab as part of the text to indent certain lines but ...
|
| TextMarker grief VS2003->VS2005 | 30 Nov 2005 08:53 GMT | 5 |
We have recently upgraded Clover.NET to work in Visual Studio 2005 and have run into a problem with the rendering of TextMarkers in the Editor window. Firstly, the code is working in VS2003 and has not been changed in
|
| Custom Tool Functionality | 28 Nov 2005 18:52 GMT | 2 |
Does anyone know how or what direction to go in to provide functionality (from and add-in) like a custom tool where i can line a generated .cs file to an existing xml file in a project. Any help would be great.
|
| OnBuildBegin Event Intended to be Usable By Addins in VS 2005? | 28 Nov 2005 11:08 GMT | 1 |
ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_envdte/html/E_EnvDTE_BuildEventsClass_OnBuildBegin.htm In the VS 2005 Help section about the OnBuildBegin event (link above), there is a comment at the top that says: "...supports the .NET Framework...not intended to be ...
|
| Problem with DTE.Events | 28 Nov 2005 05:57 GMT | 2 |
I'm having problem with subscribing to some of the DTE Events from my Add-in's procedure OnConnect. Here is code: ////// private _DTE applicationObject;
|
| Setup project problem | 27 Nov 2005 14:03 GMT | 2 |
in the custom install event I need to create VS object in safe mode. I.e. Dim _args() As String = {"/safemode"} Dim _t As Type = System.Type.GetTypeFromProgID("VisualStudio.DTE.7.1") m_applicationObject = System.Activator.CreateInstance(_t, _args)
|
| Deserializing Object in the context of VS Add-in | 26 Nov 2005 15:10 GMT | 1 |
I'm having a strange issue with some serialization code that I have. When executing the following code within the context of a unit test where the assembly is and is not strongly named (I've tried both ways) and it's successful. However, when running the same code from within the ...
|
| How to add an assembly reference to VS 2005 web projects? | 26 Nov 2005 15:00 GMT | 1 |
I am trying to automatically add an assembly reference to "myassembly.dll" to user's project from my Visual Studio addin. The addin setup program adds the necessary registry key in order to display "myassembly.dll" in Visual Studio's "Add Reference"
|
| Error List | 26 Nov 2005 14:52 GMT | 6 |
I need some Help with a VS 2005 Add-in. I'm using the OnBuildProjConfigDoneEventHandler to do some post processing and if that post processing fails, the Error list should show the error and the Build output should show, that
|
| Handling QueryStatus for IOLECommandTarget | 25 Nov 2005 10:38 GMT | 1 |
I am implementing interface IOleCommandTarget on MyProjectNode (Project class name). The method QueryStatus is not doing anything. but just returning VsConstants.S_OK. Now in the vs.net 2005 exp hive i am unable to execute any of the menu
|
| automatic macro execution when creating new project in vs .net 2003 | 23 Nov 2005 11:00 GMT | 1 |
Is there a way to automate the execution of a macro that, say will add to each file added to a project a header with information about that file/class, the description, author, creation date, versions and so on and so forth?
|
| VS2005 Custom Debug Engine | 23 Nov 2005 04:51 GMT | 2 |
I have successfully (questionable) followed the Text Interpreter sample provided with the VS 2005 SDK to get a working debugger for a company-internal version of Lua. However, when the program closes w/o notifying Visual Studio that debugging should end, it spits out the ...
|
| Adding a Command to the Context Menu of an file in the Project Exp | 22 Nov 2005 15:55 GMT | 2 |
I've seen the posts about looping through the commandBar names to get the right commandBar to add my command, but i can't figure out how to get my add-in to show up on an individual file's context menu within the solution explorer, the closest i can get is at the project ...
|
| UIHierarchyItem path++ | 22 Nov 2005 14:46 GMT | 3 |
Is it possible to get the absolute path of any folder / item in the vs.net 2003 tree even if one project is unmodeled? Now I just have to get the item name and "Guess" the path via parent item names, which is not bulletproof.
|
| Adding a new compiler to Visual Studio | 21 Nov 2005 15:17 GMT | 1 |
I need to write an Add-In for Visual Studio that will: - Enable a compiler other that Microsoft's C++ compiler to build Visual C++ Projects. - Add an entry to the properties of the project to enable selection of
|