Are there any "old-style" VSIP partners who have been able to access the privatenews newsgroup? From what I've gleaned, everyone should login to the ...
Since Microsoft has made the VSIP interfaces available to everybody I would like to take this opportunity to say that discussion of VSIP programming is also...
We just use the /OUT parameter when building at the command line. This lets you specify an output file. Then after the DEVENV.EXE process ends, we check the...
That is definitely the fallback plan ;-) ... This lets ... ends, we ... the command ... window. ... part of an ... does not ... running a ... though not ... ...
I have the same probelm. Incompability between VS.NET 2002 and 2003. I have also posted my problems at microsoft.public.vsnet.ide two times but no reaction...
Hi Folks, I'm new to this group and hope, I'm on topic. I read through the last 1K messages but couldn't figure out my problem, so I'm posting. We're ...
Hi everyboby, I need help. The subject discribe what I want to do. And belieced I solved this assignment from my boss. I developed my "solution under VS.Net...
Eric, Thanks a lot. This looks exactly what I was looking for. I was aware of the concept of "context bag" by looking at the VSIP doc, but I had missed any...
Hello all, I am currently trying to find out a good strategy to handle the creation/deletion of commands by add-ins. The problem I am concerned with is whether...
Hi, Commands should not be deleted when the user unloads the add-in, only when the user uninstalls the add-in. If you remove commands when the user unloads the...
Carlos, Yes, I have already implemented the deletion of commands upon uninstall (with a little help from the book "Inside VS .NET 2003"). Here, I am wondering...
IMO, commands (which are non-UI) should be preserved to avoid losing customizations but toolbars (which are UI) should be unloaded (it is what I would expect...
... would ... I don't have a real solution, but what about moving the files in the existing folder somewhere else, _before_ doing the AddDirectory ? Or just...
I released (a bit ago) VSEDebug Beta 1 for people to test, and I'd like some feedback from the people who know VS best. VSEDebug is a debugger add-in that...
I am trying to bind various keys to various addins I have written in C# but so far I have failed. I have downloaded the KeyMap addin referred to in Brian...
Brian Phillips
brianphillips@...
Aug 9, 2003 1:45 pm
1121
Well, I always delete it! ... From: cyril_mathey [mailto:cmathey@...] Sent: Friday, 8 August 2003 7:36 PM To: vsnetaddin@yahoogroups.com Subject:...
Here's the function I'm using (pun intended). It basicly grabs the entire text of the document, and parses it manually. The compiler requires that using...
FYI. The compiler doesn't require all using statements to be at the beginning of the file. You can place them anywhere, for example, inside a class or...
I'm working on an add-in, and the VSIP program has an example of making a debugger. When I try to follow the example, it fails. I have VC6, .NET 2002, and .NET...
I have an add-in which adds a toolwindow in the OnConnection event. I am not using the UserControlHost control, but hosting the usercontrol directly. Now it...
Okay, I see that they can be placed inside a namespace declaration, but how exactly do you get them inside a class declaration. I'm using VS2003 and it gives...
Hi all: I'm working on an add-in that wants to handling VS.NET IDE's Edit commands, such as Redo, Undo. Can anyone here tell me how could I do this? I have...
You can use EnvDTE.Events.CommandEvents, filtering passing the GUID and ID of the Redo, Undo commands. I think to remember that there is a bug that causes that...
Hi all, I noticed that after installation of VSIP SDK my VS.NET no longer works correctly. The problem is that code generation wizards (like Add new class,...
run regsvr32.exe against the csproj.dll that should fix it. Cheers! Dave ... From: dsha1980 To: vsnetaddin@yahoogroups.com Sent: Tuesday, August 12, 2003 9:07...
Hi all: I think I should detailize what I want with the ToolWindow. I'm working on an add-in ToolWindow that wants to handle VS.NET IDE's Edit commands, such...
Thank you Carlos, thank you for the info but what I want is control the Command's status from Add-in. The CommandEvents is capable only intercept the command...