How can I make mousewheel work in VB6 IDE?

IdeVb6Mousewheel

Ide Problem Overview


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 was brought out when most mice didn't have one, but is there a way to fix it so it does recognize the mousewheel?

Ide Solutions


Solution 1 - Ide

Microsoft has an extension that can provide the behavior requested. You have to download it from the link below and register it with the steps provided, such as using regsvr32

http://download.microsoft.com/download/e/f/b/efb39198-7c59-4ace-a5c4-8f0f88e00d34/vb6mousewheel.exe

Update: Here are the steps

  • Download the VB6 Mouse Wheel.exe file that includes the add-in DLL and the code that is used to create the add-in DLL.

  • Extract the files to a location you have access to.

  • Open a command prompt, run as administrator.

  • Go to the folder you extracted the files to.

  • type regsvr32 VB6IDEMouseWheelAddin.dll, and then click OK

  • Start Visual Basic 6.0. Click Add-Ins, and then click Add-in Manager.

  • In the Add-in Manager list, click MouseWheel Fix.

  • Click to select the Loaded/Unloaded check box, and then click to select the Load on Startup check box.

  • Click OK.

Solution 2 - Ide

The easiest method that worked for me was just downloading and running the binary from http://www.joebott.com/vb6scrollwheel.htm

Usage:

Just run the exe and your VB editors have the scroll.

Info from the Author:

> This is a small program that will make your mouse's scroll wheel work > in various older programs - mainly Visual Basic 6's code window. I > noticed a lot of people coming to this site from Google looking for > help with their mouse wheel. So, I decided to fix it. > > It is possible to support many programs by adjusting its INI file. The > included INI file includes support for: > > > - VB6 Code Window > - VB6 Resource Design Window > - SourceSafe 6 Diff Viewer > - Windiff VBA Editor

Solution 3 - Ide

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)

6. Open the VB IDE. 7. Go to the 'Add-Ins Manager'.

  1. Select 'MouseWheel Fix' in the Available Add-Ins.
  2. Check 'Loaded/Unloaded' and 'Load on Startup'.
  3. Click 'OK' button.

Solution 4 - Ide

Steps from https://support.microsoft.com/en-us/kb/837910

To install the VB6 IDE Mousewheel Addin:

  1. Copy VB6IDEMouseWheelAddin.dll to your local System32 directory and register.
  2. Open the VB IDE.
  3. Go to the 'Add-Ins Manager'.
  4. Select 'MouseWheel Fix' in the Available Add-Ins.
  5. Check 'Loaded/Unloaded' and 'Load on Startup'.
  6. Click 'OK' button.

You should now be able to use the mousewheel in the code window.

Solution 5 - Ide

I came across another method (which was discussed on VBForums, advocated by Dilletante and Elroy).

> ...use the X-Mouse utility to fix the scroll-wheel. ... it's the only > one I've ever found that correctly scrolls when you have your code > displayed as a split-window.

Download website.

enter image description here

Since I was having trouble with the Microsoft add-in noted in some other answers I tried this and it does work well. Conveniently it also lets you set some options to tune the scrolling behavior and speed.

Solution 6 - Ide

Here's another external program, as mentioned in another question.

Download link: Wheeler

> Wheeler is a free program that enhances the behavior of your mouse > wheel... > > Wheeler is a highly configurable program. Here are some highlights: > > In addition to scrolling the window under the cursor when you roll the > mouse wheel, it's possible to move the keyboard focus to that window... > Through the concept of wheelability, you > can control how wheel messages are processed on a per window class > basis. Scoped window classes allow you to associate window class names > with the specific programs that define them, so you don't have to > worry about affecting other programs that may unwittingly use the same > window class names. ... You can exclude entire programs > from the Wheeler treatment.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStarwatcherView Question on Stackoverflow
Solution 1 - IdeDaniel A. WhiteView Answer on Stackoverflow
Solution 2 - IdevinayanView Answer on Stackoverflow
Solution 3 - IdeKim Thach HuynhView Answer on Stackoverflow
Solution 4 - IdeGary KindelView Answer on Stackoverflow
Solution 5 - IdeStayOnTargetView Answer on Stackoverflow
Solution 6 - IdeStayOnTargetView Answer on Stackoverflow