Python Forum

Full Version: Remote control of the Visual Studio 2013 debug menu using Python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want a modality to control the debug menu from Visual Studio IDE on the same machine using python script.

For example:
-ADD BREAKPOINTS
-STEP INTO
-STEP OUT
-READ VARIABLE
-WRITE VARIABLE

In present I use :
    pythoncom.CoInitialize()
    dte = Dispatch("WDExpress.DTE.12.0")
    dte.MainWindow.Visible = bVisibleUI
    dte.Solution.Open(sSolutionPath)
But this method is instable, do you know if is any solution available ?