Is it possible to write an add-in that manipulates the Watch window while Visual Studio is in break mode? I havent found any doc in MSDN on which object to...
Does anybody know how to enumerate the controls on a Web form? My present understanding is that the IDesignerHost is not available and that the designer for...
What is it, exactly, that you want to do with the watch window? It's a VS.NET window, meaning you can get to it and treat it as a window, but beyond that, I...
What i wanted to do was use the watch window as a small time unit testing add-in tool. To add expressions to the watch window and evaluate the returned...
Hi, I still looking for solution of this problem. This problem is the only obstacle to the completion of my addin project. Its been over a month that I had...
Hi, I donīt know the answer to this (never heard of IFilterProperties) and it seems that nobody else will know here. Since you are stuck with this problem for...
Hi Carlos, Thank you for your response and advise. Unfortunately I am not a MSDN subscriber as it is too expensive for me to subscribe. I had this same problem...
Hi Charlie, Thank for your response. Yes, IFilterProperties is inside EnvDTE and has a single method IsPropertyHidden, and it appears in the MSDN help library...
I'm using the Debugger.GetExpression() function to execute a function from the project that VS is currently debugging. I've figured out how to recursivly...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the vsnetaddin group. File : /VS.NET...
vsnetaddin@yahoogroup...
Jan 12, 2004 5:08 pm
1565
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the vsnetaddin group. File : /VS.NET...
vsnetaddin@yahoogroup...
Jan 13, 2004 10:36 am
1566
I'm a VS.Net add-in rookie and I've been playing with some sample code. I have an add-in project that I constructed with sample code and it appears to work...
If you are sure that you are in debug mode, with the pdb file correct and so on, try re-registering the addin (as ActiveX component and as addin) Carlos J....
I fully agree with Carlos. What I can add is that it happened to me that the 2nd instance of VS.NET was not loading the same physical file that the one in the...
I have the name of a stored procedure, its database, server name, and all necessary login information. Is it possible to pass this to the IDE and bring up the...
Can anyone tell me how can I check if the visual studio .net window is active or not? Does a 'onFocus' function exist? I didn't find anything. Thanks....
Hi all, I'm writing a VS.NET 2003 add-in in C#, which adds task items via TaskItems.Add(). I'd like to show a custom bitmap on the IDE gutter (ala breakpoint...
Yes, it is doable although I do not remember the way right now, surely passing a IPictureDisp COM object (using OleCreatePictureIndirect API function) to the...
Hello, We noticed StatusBar.SetXYWidthHeight displays height, then width on the status bar (H x W). This is incorrect, yes? We are now compensating in the...
... Well, ahem, actually, there IS an designer, but not publically documented... Hints: use the following declaration: using System.Runtime.InteropServices; ...
Thanks. When I have a little time, I will try that out. Phil ... From: dontboreme47 To: vsnetaddin@yahoogroups.com Sent: 22 January 2004 14:45 Subject:...
Does anyone here know how the VS.NET Form Designer generates the code for forms? I've been looking everywhere for information on this. I want to auto-generate...
The best way is to find this out is to download the source of SharpDevelop from www.icsharpcode.net as they have implemented the ISite interface together with...
I am trying to catch the position of the cursor in the EditorWindow. I tried to use EditPoint but seems that it's useful just to set the position but not to...
... Sub ActivePointExample() ' Before running this example, open a text document. Dim objSel As TextSelection = DTE.ActiveDocument.Selection Dim objActive As...
... code ... Pete, I have addressed this in my book, Writing Add-ins for Visual Studio .NET, published by Apress and available at Amazon.com, but there is a...
Is there a way to create a command alias programmatically? I'm currently doing DTE.ExecuteCommand( "Tools.Alias", "svn Ankh.RunSvn" ); but this fails with an...