up vote 9 down vote favorite
4
share [g+] share [fb]

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?

link|improve this question
feedback

5 Answers

up vote 13 down vote accepted

http://support.microsoft.com/kb/837910

link|improve this answer
4  
At my company we use a free tool Gazanov VBScroll, which works with VBA and also works in the SDI mode of the VB6 IDE (unlike the MS add-in). gasanov.net/VBScroll.asp – MarkJ Jun 25 '09 at 7:02
thanks for the gasanov solution, apparently the fix posted by microsoft itself doesnt work on my vb installation. but gasanov's works like a charm – lock May 6 '11 at 0:21
feedback

There is an addon released by microsoft

http://support.microsoft.com/?id=837910

link|improve this answer
feedback

Yes. See this MSDN article:

http://support.microsoft.com/kb/837910

link|improve this answer
feedback

Yes, and the solution is the top-voted answer in the question what are your favourite VB6 tips and tricks. Do have a look at the other answers, it is well worth it. Even my four answers IMHO :)

link|improve this answer
That topic you mention is new to me, but yes, good point and I will be sure to look it over; thanks for mentioning it. Oddly enough, it did not pop up as a possible dupe when I composed the question. – Starwatcher Jun 24 '09 at 17:26
I don't like that add-in method, at all. Very limited, in that it didn't work in VBA. And the requisite IDE subclassing is just asking for trouble, it seems. I always liked the 3rd party tool Wheeler best, which worked with VB5, VB6, and VBA. But, sadly, it seems the company that provided it (Eluent Software) has taken down their website. – Karl E. Peterson Jun 24 '09 at 23:13
At my company we use a free tool Gazanov VBScroll, which works with VBA and VB6 and also works in the SDI mode of the VB6 IDE. gasanov.net/VBScroll.asp – MarkJ Jun 25 '09 at 7:00
@Starwatcher, I didn't mean your question was a duplicate, but clearly you hadn't seen the tips and tricks, so I wanted to strongly recommend you look at them. I just hate to think what else you might be missing - MZTools? – MarkJ Jun 25 '09 at 19:42
feedback

Steps from http://support.microsoft.com/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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.