CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    3,585

    [RESOLVED] Debug control panel applet on Win7

    Does anyone know how to debug a control panel applet on Win7? The typically way of using RunDLL32 does not appear to work. I can't set breakpoints and it appears that UAC looks upon RunDll32 as a security risk. The same method works fine on XP. Is there another mehtod to debug applets on Windows 7?
    Gort...Klaatu, Barada Nikto!

  2. #2
    Join Date
    Apr 1999
    Posts
    3,585

    Re: Debug control panel applet on Win7

    I have resolved this. I did not realize that the process I was debugging was a 32 bit process on 64 bit Win7. Therefore, I needed to start RunDll32 from SysWow64 and load the control panel applet from there also. Once I did this, I was able to set breakpoints and debug.
    Gort...Klaatu, Barada Nikto!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured