Hi Phil, I think I said it would take weeks or months, as I move one article per week or so, and so far I had moved... 3. I am also affected by this problem....
Hi, I'm developing an vs.net add-in, which, I need to implement a custom intellisense (or auto completion list). I've only found out that I must use COM...
Hi Recep, You have a lot of resources in the Files section of this forum. Read a lot about addins before starting yours. About providing intellisense, your...
Thanks for your quick answer, Actually, what I am asking is the way to integrate my own intellisense results to the vs.net auto completion listbox, not to ...
I have not heard anything back, I will follow up and see if they found anything. Craig ... From: Quintero Vivar, Carlos Javier [mailto:CarlosQ@...] ...
Maybe, I am not very aware of that addin, but for what I have read now it uses separate lists: http://www.wholetomato.com/products/features/suggestion.html ...
Thanks for your answers, I'm going to look at the VSIP way. - Recep ... now it ... its ... Another problem ... LineChanged ... Win32 hacks or ... that you ... ...
Visual Assist has it's own Intellisense (that's the whole point - it is better than the built in one). It does not integrate into the IDE's Intellisense. ...
... Thanks for help. Another question (I hope this is the last). How to attach out of process to DTE in quiet mode? The quiet mode I mean a mode that forces VS...
Is there any way to determine the state of a tool window? I want to be able to determine (and set) if a tool window is pinned. WindowState just tells me if it...
Visual Studio will show UI in only a few situations when you are using automation (all other UI being displayed is considered a bug and I would like to hear...
... Is the Window on autohide? That will trigger that, IIRC. In my code, I'm doing this: // we need to make sure its not hidden and that it is dockable bool...
The window is not autohide. I ran your code and I get the same "Unspecified Error" when I get to any of the assignment statements. Not sure if I mentioned...
I am writing Add-ins in C++. I modify C++ source code for each function in the active document iterating via VCFileCodeModel's Functions collection, and using ...
Hello, I am writing a VS Package using both VSIP Extras and Automation, and sometimes I need to retrieve a EnvDTE.Project from a IVsHierachy. To do this, I...
You probably want to use a combination of VSIP and Automation to do this. If you call the UniqueName property on EnvDTE.Project, this gives you a string value...
Hi all, I once posted this problem here, but didn't receive any replies, so I'm trying again. The problem is that my add-in cannot retrieve late-bound...
Hi all, I created a new project template (using vsdir, vsz files), and i would like to integrate the project Properties. For example: disable the 'Output Type'...
Hi, As we know the compile event will not launch pre_build event. But I need this event to do some pre-processing (not compile preprocess) when the user do...
Hi, in my add-in I'm trying to set shortcuts programmatically using Command.Bindings property (as it seems the only way for add-in to change the keyboard...
In my code, I add some values to the Project.Globals object and later on I need to remove them. I haven't seen any way to do this via the Globals object. You...
Hey Everyone, I have a treeview control that I use to display the projects of a solution and all of their namespaces and classes, similar (almost exactly) to...