| Thread | Last Post | Replies |
|
| Adding Toolbox Tab and Items | 14 Sep 2004 09:34 GMT | 1 |
I'm trying to add a new ToolBox tab and items to VS.NET 2003 (from an external application). I use the code below. It doesn't throw any exception, but it only creates the new tab without creating the toolbox item :( Dim latestDTE As Type = Type.GetTypeFromProgID("VisualStudio.DTE ...
|
| When wil the IVsColorizer::CloseColorizer be called? | 13 Sep 2004 02:12 GMT | 2 |
Hi Experts, I had implemented a [designer] view, which uses the same textbuffer with a [code] view. Furthermore, I had implemented a language service and colorizer.
|
| Window Frames | 08 Sep 2004 17:45 GMT | 1 |
Does anyone know how I can retrieve the IVsWindowFrame of the Solution Explorer. If I create a new project, if the Solution Explorer is closed I want to be able to open and display it. I thought the EnvDTE.Windows.Item.Activate
|
| VSPackage Registration in 2005 | 08 Sep 2004 17:08 GMT | 1 |
Good evening, I'm trying to run my first VSPackage by creating one through the VSIP Wizard in 2005 Beta1. I followed all the steps in the help topic "How to: Create a VSPackage Using the Visual Studio Integration Package
|
| Best way to open a document in VS.Net extensibility | 07 Sep 2004 20:04 GMT | 3 |
********* <USING VS.NET 2005 BETA 1> ************ Is the code below the only way to open a document in VS.NET? Am I missing something like DTE.Solutions.Projects["MyProject"].Files["Class1.cs"].Activate();????
|
| Help Please! I can't clean-up my test addins | 07 Sep 2004 19:40 GMT | 1 |
I have been fiddling with VS.Net Addins in the 2005 Beta1 edition and somehow I've managed to fill my Tools menu with TONS of copies of a particular addin (it's the "hello world" of addins with the smiley icon and the name "Happy Face!").
|
| How to use property page | 07 Sep 2004 16:53 GMT | 3 |
I am trying to create my own editor as a Visual Studio Integration Package using C#. I used the Wizard provided by VSIP SDK, replaced the text editor with my own control and all worked fine.
|
| Property Page | 07 Sep 2004 13:25 GMT | 1 |
In C# I'm trying to implement a Custom Property Page for a project. I've implemented the ISpecifyPropertyPages interface but how do I fill the CAUUID structure. There doesn't seem to be any documentation. Thanks
|
| How do I Debug the VSIP SDK Samples | 07 Sep 2004 02:00 GMT | 1 |
I know this must be really obvious but how do I actually 'F5' the SDK sampes? I've got BscProj open but F5 just prompts me for a launchable executable (because its a DLL presumebly). Thanks
|
| Do I need VSIP integration for this... | 06 Sep 2004 09:27 GMT | 1 |
Our company produces a .NET assembly to be used by developers. We'd like to create some custom project templates and integrate our help into VS.NET. Do we need VSIP to get this level of integration?
|
| HOWTO: Open an Arbitrary Text File from an External Application | 04 Sep 2004 23:02 GMT | 1 |
I'm trying to write an application that will start up Visual Studio .NET 2003 and open up an arbitrary text file in the text editor. I've done something similar in Visual Studio 6.0 by creating an instance of VS 6.0, getting an IApplication interface to the
|
| C++ projects and output groups | 03 Sep 2004 19:47 GMT | 1 |
I have a managed package that deals with project output groups. Output groups are accessed through IVsProjectCfg2.get_OutputGroups() method using following code: private IVsOutputGroup[] GetOutputGroups( IVsProjectCfg2 config )
|
| Debugging Managed Package Load problems | 03 Sep 2004 09:16 GMT | 2 |
Is there any way to get some information from Visual Studio when it cannot load a package? A few of our users report that our package does not load - hitting any of its menus causes a delay and then nothing. We have tried to determine the causes of this without success so far. For ...
|
| cant connect Msdn to visual studio | 03 Sep 2004 08:44 GMT | 3 |
I install visual studio 6 SP6 and after that I install MSDN help July 2002 but I cant open the MSDN from visual studio and when I press F1 (for help) I just get a message box that saying MSDN not install Why??? I can open the MSDN directly bun not through visual studio-6 can I fix
|
| Acessing Class View | 01 Sep 2004 08:28 GMT | 2 |
Hi !! I need acess the class view and i wrote the follow code: Window win = DTE.Windows.Item(Constants.vsWindowKindClassView); UIHierarchy CV = (UIHierarchy) win.Object;
|