| Thread | Last Post | Replies |
|
| Addin restarts again and again | 31 May 2005 15:45 GMT | 2 |
If I try to disable my addin in addin manager it disconnects but then restarts again and stays enabled. Is it a known issue? With best regards,
|
| Question on how to display my property page | 30 May 2005 06:40 GMT | 16 |
I've created a property page (that derives from SettingsPage in the Microsoft.VisualStudio.Package namespace) for my MPF based project system by taking the appropriate code from the MyProject sample project and merging it into my project. It displays correctly when I select the ...
|
| VSIP extra: ToolBox | 29 May 2005 14:44 GMT | 1 |
IVsToolbox interface exposes the AddItem method, which gets Microsoft.VisualStudio.OLE.Interop.IDataObject parameter. How do i instanciate a DataObject that inherits this interface? Thanks,
|
| Hosting multiple core editors in a tool window | 28 May 2005 07:23 GMT | 6 |
I recently found this post which described how to host a core editor inside of a tool window: http://blogs.msdn.com/dr._ex/archive/2004/08/29/222425.aspx With a little tweaking, it appears to work well enough in Whidbey. What I
|
| IVsClassView.NavigateTo doesn't work with solution folders | 28 May 2005 02:58 GMT | 9 |
If people use solution folders, then IVsClassView.NavigateTo doesn't work. The code below works if the project is directly under a solution. In VS 2005, if I create a solution folder and put the project in it, it no longer navigates to the item.
|
| Slow Parser | 26 May 2005 08:20 GMT | 1 |
I'm building a simple colorizer for a proprietary in-house programming language. I'm using flex++ to build a simple lexer that returns recognized tokens. The resulting colorizer is very slow, and this is particularly noticeable
|
| Addin licensing EnvDTE.dll | 25 May 2005 09:53 GMT | 9 |
if I want to deploy my addin do I allowed to ship microsoft dll's with it (i.e. EnvDTE.dll, vcpkg.dll ...)
|
| Adding a TraceListener via devenv.exe.config causes an exception in my VsPackages | 24 May 2005 08:29 GMT | 5 |
I am trying to leverage the .NET Framework's built-in logging facilities to instrument my VsPackages in both Debug and Release modes. I want to add a TextWriterTraceListener via devenv's .config file, so I've added the following lines to this file:
|
| Visual Studio core editor | 21 May 2005 04:20 GMT | 1 |
I have been reading in the VSIP documention about using the VS core editor. Are there any examples of how to instantiate the core editor within the EditoryFactory class?
|
| Best way to trap document closing events? | 20 May 2005 14:34 GMT | 3 |
I would like to perform some work whenever a document window is closed in the IDE. Currently I've implemented IVsRunningDocTableEvents3, and inside OnBeforeLastDocumentUnlock(), I do the following: if (dwRDTLockType == (uint) _VSRDTFLAGS.RDT_EditLock && dwEditLocksRemaining
|
| Determining a Projects Type with an Add-In | 19 May 2005 15:36 GMT | 2 |
Is there a way to determine the type of project that is loaded within a solution ?
|
| How to register Custom Textmarkers | 18 May 2005 15:22 GMT | 5 |
I've implemented a custom Textmarker and almost everything around it. The Problem now is, that the "DrawGlyphWithColors"-Method is never called. Can anyone tell me how to register the Textmarker properly? So far I've got this:
|
| EnvDTE - Retreive a Projects Output Path | 17 May 2005 10:51 GMT | 2 |
How do I retreive the Ouput Path of (a) Project(s). I mean as in the 'Configuration Properties - Window" (default: bin\) TIA, Michael
|
| How to share one satellite DLL among several packages? | 17 May 2005 09:22 GMT | 2 |
I'm creating a couple of different packages, and in order to simplify a number of areas of complexity, I would like to have them share a single satellite/resource DLL. Do I simply need to modify the 'SatelliteDll' key of each package so that it points to this single DLL, or are ...
|
| Best load strategy for package that needs to trap 'OnSave' events? | 16 May 2005 04:18 GMT | 4 |
I'm working on a feature that requires notification of when text files in the RDT are saved. I can't think of any good way to delay-load this package, because it's the sort of thing that is working behind the scenes, and it needs to be active and able to execute code as soon as a ...
|