Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make mousewheel work in VB6 IDE?

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?

like image 363
Starwatcher Avatar asked Jun 24 '09 17:06

Starwatcher


2 Answers

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.

like image 132
Daniel A. White Avatar answered Sep 20 '22 14:09

Daniel A. White


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
like image 39
vinayan Avatar answered Sep 20 '22 14:09

vinayan