views:

16

answers:

1

Hi, using this code I get the object representing Visual Studio:

var dte2 = Marshal.GetActiveObject("VisualStudio.DTE.10.0") as DTE2;

However, when I have multiple instances of VS opened, this returns any instance of VS, not the one I am currently executing the code from.

I am not within an add-in so I don't have access to the applicationObject.

How can I get the current Visual Studio instance??

Thanks a lot.

+1  A: 

Try pulling the Active Window Handle (Foreground Window) with the Windows API's.

tcables