Re: IVsLiteTree interface
Mon, 8 Oct 2007 22:22:09 -0400
Sean,
The IVsLiteTree interface lives in the
'Microsoft.VisualStudio.Shell.Interop' namespace. You should be able to add
that assembly as a reference. If not, you can find the file located at
'C:\Program Files\Visual Studio 2005
SDK\2007.02\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudi ...
|
Re: Need help: ToolWindowPane.Show() fails with E_UNEXPECTED
Mon, 08 Oct 2007 14:29:08 -0000
After I removed the Parameter MultiInstances from the attribute
[ProvideToolWindow(typeof(ToolWindow))], I could reopen the closed
toolwindow. But then I run into another problem: The window state
(docking) is not restored correctly after the VS startup. I tried to
close the window in the Dispose method of my pa ...
|
Re: QueryEditFiles problem
Mon, 08 Oct 2007 14:28:28 -0000
It is probably looking to see what the editable/readonly status is of
the file. It could be related to determining source control status.
Checked out
Here is some more information related to QueryEditFiles, it lists
reasons why it might be called:
http://msdn2.microsoft.com/en-us/library/microsoft.visualstu ...
|
Re: Clickonce deployment with isolated shell
Mon, 08 Oct 2007 14:20:25 -0000
On Oct 5, 1:32 pm, "Paul Skelton" <rpskelt...@hotmail.com> wrote:
> Hello,
>
> We'd really like to use the isolated shell but there's a hard requirement
> that we support clickonce deployment. I know there is some documentation on
> deploying COM apps with clickonce but will it be possible to clickonce
> depl ...
|
Re: Need help: ToolWindowPane.Show() fails with E_UNEXPECTED
Mon, 08 Oct 2007 14:02:32 -0000
Ok, after some code changes, I tried the following lines:
Window window = _dte2.Windows.Item(captionOfToolWindow);
window.Activate();
window.Visible = true;
but I still get an error: "Value does not fall within the expected
range." The funny thing is, that as long as the toolwindow was not
closed, the meth ...
|
Getting the current project?
Mon, 08 Oct 2007 13:17:02 -0000
I have been working on a custom tool and editor and I have one way to
load the current project so that I can get to the references, but that
is only working with the custom tool. I need to acces the current
project from the custom editor. What I am currently trying is the
following code.
EnvDTE80.DTE2 dte2 = ...
|
Command Id for Modify Connection in Orcas
Mon, 08 Oct 2007 12:37:45 -0000
Hi
For "Visual Studio 2008" what is the Command Id for the menu item
"Modify Connection" , which is present for the connection in Server
Explorer?
Also I want to execute a Refresh command for the connection and for
that I am specifying the GUID as
Microsoft.VisualStudio.VSConstants.GUID_VSStandardCommandSe ...
|
|
|
linkage between EnvDTE.AddIn and EnvDTE.Command
Sun, 07 Oct 2007 21:12:43 -0000
I would like to enumerate the EnvDTE.Command objects of an
EnvDTE.AddIn. Is there a way other than enumerating all the
EnvDTE.Command(s) of EnvDTE.Commands and comparing ProgID with the
first part of the Command.Name?
also, from an EnvDTE.Command object, identify the associated
EnvDTE.AddIn.
The best I ha ...
|
Re: Using VS Shell in isolated mode: development sequence
Sun, 7 Oct 2007 16:18:15 +0200
Hi Justin,
> Is your language .net based at all?
No. The interpreter has been written in C# but it doesn't produce .Net code
(it doesn't produce any code, by the way :-) ).
> Also you might try using the DSL tools for
> creating a custom language, this is a relatively easy way to create a
> domain speci ...
|
Can I access build events tab of a given project properties page from vs2005 add-in?
Wed, 14 Mar 2007 17:32:18 +0800
Hi guys.
I want to access the build events tab of a given project properties page? Is
this feasible? What I want is to copy a xml data file data.xml (this file
was generated by my add-in and when program runs, it depends on this xml
file) under $(ProjectDir) directory to $(OutDir) after the project is bui ...
|