How can I make mousewheel work in VB6 IDE?

后端 未结 6 1605
借酒劲吻你
借酒劲吻你 2021-02-06 20:56

One annoying behavior of the VB6 IDE editor, especially when switching back to it from more recent tools like VS.NET, is that it doesn\'t recognize the mousewheel! Maybe VB6 wa

6条回答
  •  孤城傲影
    2021-02-06 21:35

    ****Easy way for beginer:****

    1. Download Download the VB6 Mouse Wheel.exe file as link: http://download.microsoft.com/download/e/f/b/efb39198-7c59-4ace-a5c4-8f0f88e00d34/vb6mousewheel.exe
    2. Run .exe, click unzip (we have VB6IDEMouseWheelAddin.dll)
    3. Coppy VB6IDEMouseWheelAddin.dll to System32 (x32bit) or SysWOW64 (x64bit)
    4. Run Cmd as Administrator 5.1 With x32bit:

      C:\WINDOWS\system32>regsvr32 VB6IDEMouseWheelAddin.dll (in Cdm )

    5.2 With x64bit:

    C:\WINDOWS\system32>cd C:\WINDOWS\SysWOW64
    
    C:\WINDOWS\SysWOW64>regsvr32 VB6IDEMouseWheelAddin.dll (IN cmd)
    
    1. Open the VB IDE.
    2. Go to the 'Add-Ins Manager'.
    3. Select 'MouseWheel Fix' in the Available Add-Ins.
    4. Check 'Loaded/Unloaded' and 'Load on Startup'.
    5. Click 'OK' button.

提交回复
热议问题