Is it possible to write VS add-in using express editions
Fri, 13 Jun 2008 15:40:56 +0530
Hi,
I have VS2008 express edition for c++ and csharp.
Would I be able to write add-in for other VS editions
Thanks
ColdAir
...
|
ViewKind for open windows
Fri, 13 Jun 2008 11:31:41 +0200
Hi,
I'm enumerating through DTE.Documents, and I'd like to see if a document is
opened in the designer or code view - or both. It's fairly easy to see the
windows that a document displays. But can you make it tell you the ViewKind
somehow?
So far my best solution is to check if the window's caption ends ...
|
how do I connect to a specific instance of Visual Studio using automation?
Wed, 11 Jun 2008 07:28:45 +0800
Hello,
I have several Visual Studio 2005 instances running, and I need to connect
to one of them using C#, how can I do that?
Thanks.
...
|
Images in Solution Explorer
Tue, 10 Jun 2008 16:23:13 +0200
Hi,
I'm displaying a list of files, and I'd like to put the same images next to
them as Solution Explorer does. Of course I could start digging out images
for all known file types. But before you know it, your addin runs on a
machine where the user has installed BrainFuck.Net or some other exotic
thing. S ...
|
Issue with regular expression in VS2008 Macro
Wed, 4 Jun 2008 06:46:05 -0700
I've been working on a macro for several weeks now (VS2008 on Vista
Ultimate) that is designed to open every file in a Visual Studio solution
and inserts custom "trace" commands into every function and every "catch"
block. Currently, I use a regular expression that searches the current
CodeElement (the fu ...
|
I can not debug Text Interpreter in Visual Studio debugging
extensibility....
Thu, 29 May 2008 03:55:35 -0700 (PDT)
Hi, all.
I try to debug the Text Interpreter to understand the program control
flow. But I can not.
I do it according to http://msdn.microsoft.com/en-us/library/bb146203(VS.80).aspx
But at the 18 step "In Solution Explorer, right-click the TITest
project and click Properties." I encounter a error.
Aft ...
|
Invoke a menu command
Wed, 28 May 2008 02:26:43 -0700 (PDT)
Hi all,
i need to call a command in the main menu of VS (exactly the
"Connect to Server" one).
I'm doing the following:
OleMenuCommandService mcs = GetService(typeof(IMenuCommandService)) as
OleMenuCommandService;
if (null != mcs)
{
int commandid = 0;
CommandID conntoser ...
|
|
|
Invoke a menu command
Wed, 28 May 2008 02:22:50 -0700 (PDT)
Hi all, ...
|
object model for deployment projects
Tue, 27 May 2008 12:17:04 -0700
I'd like to use a script to add items to a VS 2008 deployment project.
Specifically, I have a large number of shortcut items to add to the "File
System on Target Machine; User's Start Menu" section. I'd like to use a
script to do this. Is the deployment object type exposed in the Visual
Studio object model? ...
|
Parsing AssemblyInfo files
Tue, 27 May 2008 03:51:02 -0700
I am writing a DSL that adds and/or updates attributes to a project's
AssemblyInfo file.
What is the recommended way to parse the existing file to ensure that no
attributes are lost?
Is it possible to use a CodeDom generating parser? Is there a standard one
implemented?
--
Many thanks,
Gary Varga ...
|