locked
windows 7 RRS feed

  • Question

  • hou to register comdlg32.ocx in windows 7

    • Moved by Mike Feng Monday, March 11, 2013 6:53 AM
    Sunday, March 10, 2013 10:42 AM

Answers

  • This forum is for VB and then especially version .Net (2002) and newer.

    For OS questions like yours use the answer forums.

    http://answers.Microsoft.com


    Success
    Cor

    • Proposed as answer by Mike Feng Monday, March 11, 2013 6:49 AM
    • Marked as answer by Just Karl Wednesday, October 23, 2013 4:12 PM
    Sunday, March 10, 2013 10:54 AM

All replies

  • This forum is for VB and then especially version .Net (2002) and newer.

    For OS questions like yours use the answer forums.

    http://answers.Microsoft.com


    Success
    Cor

    • Proposed as answer by Mike Feng Monday, March 11, 2013 6:49 AM
    • Marked as answer by Just Karl Wednesday, October 23, 2013 4:12 PM
    Sunday, March 10, 2013 10:54 AM
  • I just like solving problems
    Start menu run


    Regsvr32 comdlg32.ocx

    http://support.microsoft.com/kb/146219?wa=wsignin1.0
    • Proposed as answer by Greg Colborne Sunday, March 10, 2013 8:01 PM
    Sunday, March 10, 2013 8:00 PM
  • If you are using VB .NET, what is in comdlg32.ocx that is not already built in to .NET ?

    the register process depends on whether you have 32 or 64 bit Windows 7

    In any case:

    Move or Copy comdlg32.ocx to c:\Windows\system32 folder.
    For 64bit Windows 7, move or copy comdlg32.ocx to c:\Windows\SysWOW64
    Open a command line window AS Administrator and run following command:
    On 32 bit Windows 7:
    regsvr32 c:\Windows\system32\comdlg32.ocx
    On 64bit Windows 7:
    regsvr32 c:\Windows\SysWOW64\comdlg32.ocx

    You should see "DllRegisterServer in C:\WINDOWS\System32\comdlg32.ocx succeeded."
    or
    "DllRegisterServer in C:\WINDOWS\SysWOW64\comdlg32.ocx succeeded."

    • Proposed as answer by Devon_Nullman Sunday, March 10, 2013 11:39 PM
    Sunday, March 10, 2013 11:39 PM
  • location of file or operating are not limited to devons post

    Monday, March 11, 2013 6:17 AM