Python Forum
Remote control of the Visual Studio 2013 debug menu using Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Remote control of the Visual Studio 2013 debug menu using Python (/thread-7603.html)



Remote control of the Visual Studio 2013 debug menu using Python - MariusTo - Jan-17-2018

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 ?