用什么方法可以弹出一个调试窗口(提示启动一个visual studio),类似于.Net里的 Debugger.Launch函数

时间:2022-08-13 03:33:09
查了MSDN,必须要依赖.Net framework,有没有windows api支持这项操作的?

5 个解决方案

#1


API的话,需要什么样的窗口需要自己写代码去绘制,同时增加代码执行相关操作

#2


补充一下,就是类似这样的弹窗
用什么方法可以弹出一个调试窗口(提示启动一个visual studio),类似于.Net里的 Debugger.Launch函数

#3


百度搜相关关键字。

#4


感谢楼上提醒,baidu,bing,msdn都找过了。

#5


Enabling Just-in-Time Debugging
With Just-in-time debugging, you can run a program outside Visual C++. When an application error occurs, it calls the Visual C++ debugger.

To enable Just-in-time debugging 

From the Tools menu, click Options.


Select the Debug tab.


Select the Just-in-time debugging check box.


Click OK.


From the Build menu, choose Build <project>.exe. 
Note   If you are running Windows NT, you must have administrator privileges to set the Just-in-time debugging option.

#1


API的话,需要什么样的窗口需要自己写代码去绘制,同时增加代码执行相关操作

#2


补充一下,就是类似这样的弹窗
用什么方法可以弹出一个调试窗口(提示启动一个visual studio),类似于.Net里的 Debugger.Launch函数

#3


百度搜相关关键字。

#4


感谢楼上提醒,baidu,bing,msdn都找过了。

#5


Enabling Just-in-Time Debugging
With Just-in-time debugging, you can run a program outside Visual C++. When an application error occurs, it calls the Visual C++ debugger.

To enable Just-in-time debugging 

From the Tools menu, click Options.


Select the Debug tab.


Select the Just-in-time debugging check box.


Click OK.


From the Build menu, choose Build <project>.exe. 
Note   If you are running Windows NT, you must have administrator privileges to set the Just-in-time debugging option.