Visual Studio 2010 Professional: How to access Modules window?

How do i access the Modules window in Visual Studio 2010?


Irrelevant information

According to MSDN, only certain editions of Visual Studio let you access the modules window (ie Pro, Premium, Ultimate). i have Professional:

在这里输入图像描述

Note : Strictly speaking i don't have Pro , but i assume Pro is shorthand for Professional

MSDN goes on to say:

To display the Modules window in break mode or in run mode

  • On the Debug menu, choose Windows, and then click Modules.
  • Except i have no Modules menu option:

    在这里输入图像描述

    (edit: updated screenshot to show debugging, sitting at a breakpoint)

    How do i access the Modules window in Visual Studio 2010?


    Irrelevant information

    i tried to Customize the Debug -> Windows item:

    在这里输入图像描述

    except there is no Debug -> Modules item:

    在这里输入图像描述

    Nor is there any Windows -> Modules item:

    在这里输入图像描述

    How do i access the Modules window in Visual Studio 2010?

    See also

  • MSDN: How to: Use the Modules Window

  • Possible solutions :

  • Try the shortcut Ctrl + D, M (Note that I configured my VS2010 for C# development the first time I started it so the shortcut may not be the same).

  • Also, try repairing the install of VS2010 (This has helped me in the past).

  • You can also reset VS settings from Tools -> Import and Export settings -> Reset all settings

  • Note that I also have VS2010 Professional edition and it's visible for me under Debug -> Windows -> Modules (I'm stopped at a break point here) :

    在这里输入图像描述

    Edit :

    The option is also available in the Customize window

    在这里输入图像描述

    PS: This option is only available when in debug mode


    From your screen shot of the Debug menu I can see that you are not running the application with the debugger attached (Press F5). Most of the 'debug' windows (Threads, Watch, CallStack, Register, Modules) are not visible in the Debug Menu or the Visual Studio IDE unless you are debugging the application.

    Are you at a breakpoint in your code before looking for the Modules window?


    这是Ctrl + Alt + u用于在VS中启动C ++应用程序开发中的模块。

    链接地址: http://www.djcxy.com/p/74540.html

    上一篇: Windows 7上的.NET源代码调试

    下一篇: Visual Studio 2010专业版:如何访问模块窗口?