| Thread | Last Post | Replies |
|
| Custom Textmarkers | 15 May 2005 10:51 GMT | 5 |
Hi again! I've got problems implementing a custom textmarker in c#. Dr.Ex' blog refers writing it in C++, this seems to be rather different. Has anybody experience writing custom textmarkers in c#? Is there any
|
| LineChanged Event | 14 May 2005 09:13 GMT | 7 |
I am developing Visual Studio add-in by using VS2003 C# I am trying to handle bookmarks by name , filename , line in XML document. Projects works fine . I can get bookmark name , filename and line
|
| Editor with View Code/View Designer commands enabled | 13 May 2005 13:58 GMT | 1 |
I am trying to build an editor with two logical views, the code view and the designer view. Currently, the editor works with the C# project system, but eventually, I will want it to work with my own project system. I created the editor using the wizard and then modified it based ...
|
| How to be notified when build has finished (and if it succeeded) | 13 May 2005 11:13 GMT | 3 |
I'm creating my own project system based on the MPF in VS 2005. I'd like to be notified when the build process has completed and also determine whether the build had successfully completed. It looks like the BuildLogger property of ProjectNode might be what I'm looking for, in ...
|
| DTE.CommandEvents handlers not working reliably | 13 May 2005 03:17 GMT | 8 |
I have a VsPackage in which I am trying to intercept certain commands via DTE.CommandEvents. I've added very simple event handlers like this: commandEvents.AfterExecute += new _dispCommandEvents_AfterExecuteEventHandler(commandEvents_AfterExecute);
|
| How to add a templete in add new project in visual studio | 12 May 2005 18:11 GMT | 1 |
i want to add a templete in new project options called xxx, when i will click on xxx,some wizards will open, i want to know the procedures. thanks
|
| ANN: free DPack for VS.NET 2003/2005 v2.0.8 | 11 May 2005 22:30 GMT | 1 |
I'm pleased to announce a new version 2.0.8 availability of our free VS.NET 2003/2005 add-ons collection called DPack. DPack includes various browser tools that allow the developer to quickly narrow the search down to a particular class, method or assembly type. You can
|
| IVsClassView.NavigateTo without stealing focus? | 11 May 2005 11:11 GMT | 5 |
Is there a way to prevent the NavigateTo method of the Class View from taking focus? I want the item to be selected, but not focused; I want the focus to be wherever it would have been. If not, then is there another way to achieve the same result without the
|
| MSBuild task use VSIP or VS automation? | 11 May 2005 07:19 GMT | 13 |
Is it possible for a task I write (that's called from MSBuild) to use VSIP interfaces or VS automation? I've created my own output window pane and I'd like my MSBuild task to write to that custom output window pane. Thanks!
|
| Conditionally controlling visibility of project items | 10 May 2005 21:51 GMT | 5 |
I'm trying to add a command to the item context menu. I've done so successfully and my event handler fires correctly, etc. I only want the command to be available to items in my own hierarchy. Furthermore, I only
|
| More info on VSOBJECTINFO and IVsClassView needed | 10 May 2005 06:34 GMT | 5 |
I've searched online and haven't found any information on using the IVsClassView interface (in Microsoft.VisualStudio.Shell.Interop) along with its VSOBJECTINFO parameter. I see that the second parameter of NavigateTo is reserved and must be 0.
|
| Ordering of CodeElements in FileCodeModel | 09 May 2005 07:57 GMT | 4 |
I'm writing something where I need to know the order of various code elements in a file. At first I thought I would write my own sorting function to do this, but after playing around with the CodeElements interface in a foreach loop, it seems that they are already sorted in the ...
|
| Icon in VS 2003 Splash Screen | 06 May 2005 10:30 GMT | 14 |
I have written a Visual Studio 2003 add-in (not using VSIP, only a add-in project). The project is ready to ship. But I would like to have my app showing an icon in the splash screen, while VS is starting. Am I right, that I need VSIP for accomplish that?
|
| Are there any bookmark-related events defined? | 06 May 2005 04:33 GMT | 3 |
I would like to run code when a bookmark is changed (set, unset, cleared, etc.). Most of the help topics I've found seem to pertain to Word document bookmarks, which to my knowledge are not the same as Visual Studio bookmarks. I've tried poking around in the DTE/DTE2 Events ...
|
| Adding a command to project node context menu | 06 May 2005 00:36 GMT | 16 |
I'm trying to add a command to the project node's context menu (in solution explorer). I've been sifting through the ShellCmdDef.ctc and SharedCmdPlace.ctc files but I've been unsuccessful in finding a group that I can make the parent of my command in a CTC file. I've added my ...
|