| Thread | Last Post | Replies |
|
| Rename Form Controls | 26 Jun 2007 02:45 GMT | 5 |
I'm trying to write a macro that will run through an active project in VS2005 and get a reference to all controls in each form, so that I can later rename them. My code so far is below, but my questions are: a) How can I find out if a project item is a form (as opposed to some ...
|
| Active Project | 25 Jun 2007 09:42 GMT | 1 |
for a Visual Studion 2005 Add In i need to access the currently selected project. I have don this by the following code line: DTE2 dte2 = (DTE2) Marshal.GetActiveObject("VisualStudio.DTE.8.0"); Project project = dte2.ActiveDocument.ProjectItem.ContainingProject;
|
| Adding resource programmaticaly | 12 Jun 2007 15:16 GMT | 2 |
I try to create an addin using non managed C++. I'd like to add resources( dialogs, .. ) into VC Project programmatically. How can I do this? Regards,
|
| /resetaddin | 11 Jun 2007 16:59 GMT | 2 |
does anybody know, if it is possible to execute the /resetaddin functionality in the extension object model? Something like that: Type t = Type.GetTypeFromProgID("VisualStudio.DTE"); DTE dte = (DTE)Activator.CreateInstance(t);
|
| Changing MainWindow cursor | 11 Jun 2007 09:39 GMT | 1 |
I'm developing an AddIn that has a long process. I would like to show the Wait Cursor in the IDE while the process is running. How do I do this? Thanks for any help anyone can give,
|
| Prompting user that the open file has been changed? | 04 Jun 2007 15:33 GMT | 1 |
How can I display the "This file has been modified outside of the source editor. Do you want to reload it?" message box in my implementation of IVsFileChangeEvents.FilesChanged?
|