Hello, First thank you for having this group, it is a great idea! Second I work as a software engineer, mostly C#/asp.net stuff. I got this requirements, and...
Supposing that you want to do it from a macro or add-in, which is the purpose of this group, you would have to: - Get the ToolBox object: EnvDTE.ToolBox...
Since this question was becoming a FAQ and it is far from trivial, I have just written this MSDN KB article: HOWTO: Manipulating controls of Windows forms from...
Thanks! I look forward to digging through the code a bit more. hadn't seen this same request before, though. Perhaps my search criteria was worded differently....
I wrote a program in Visual Basic .Net then created a Setup Project to install it. Now I need the program to automatically run after the setup is completed....
It is assumed that add-ins operate on the loaded project in the IDE (files of the project, active window, etc.), and the extensibility model is for that, so I...
I try to use much the same thing but not in a add-in. I try to do it for a standalone application that can open any Assembly. In the last hour, I found out how...
The Text property should return that info for menu items ... Am I missing anything? Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ From:...
hi, i m tryong to cause an event tick very fastly and continuously, i did this by using timer control but what i m facing that even at timer1.interval= 1 it...
Hi, Couldn't find an answer anywhere so would appreciate any help. Can unsafe code be used in an add-in that targets VS.NET 2002, 2003 and 2005? Cheers, ...
... Considering that add-ins can be written in ATL/COM/C++, I'd bet a lot that the answer is "yes". -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog:...
Hi Carlos, I think you follow this Yahoo Group more closely than MS Groups and hence I am pasting all our mails here and lets continua the discussion here. ...
OK, I was partially wrong and it seems that using SelectionContainer you can get the selected item in the Class View for some kind of projects. See: ...
Oh. Thanks a Lot. I think I got answer. I am using for VB.NET Project and hence my AddIn couldn't recognize the SeelctionContainer Items. Thanks a Lot ...
Hi, I'm trying to build an add-in with C++. I used the AddIn Wizard. But after compiling I get no icon to run it. So I don't even get to step in the Exec...
Hi Andreas, You can use EditPoint in Text Editor Object Model to insert text at the current cursor in the active window. Try the following macro: Sub...
Anyway Thanks for your answer. I have another question related to the .NET Extensibility Model and use of Debugger to assign to my process Programmatically. I...
Hi All, Just joined and already I have a question. I wasn't able to find it in the past messages. Basically I have created a Tool Window add in with two...
Thanks for that Craig, I've seen that example but only in VB.NET and am a C# programmer. Do you have the C# styntax by any chance I've tried converting it...
The compiler is telling you that applicationObject has not been initialized and will be null when using applicationObject.Windows blah blah .... You need to...
But if I am calling this code from a user control. How will I get the application object is there method I can use to set it? I understand that it is called...
The DTE object is passed to your addin from the host in the OnConnection method. From there, you need to pass it to whatever objects may need it... ...
Put a property in the User Control and pass this Object to that User Control by means of the property. For Ex; if your user control is MyUserControl; I"ll have...