Board index » cppbuilder » Wheel Mouse

Wheel Mouse


2007-05-11 10:16:17 PM
cppbuilder6
Hi:
Please don't laugh but I just recently got a "wheel" mouse at work where I
do all my development.
Anyway, I just noticed that my app (BC5.02 and OWLNext) does not scroll with
the mouse wheel. I have a window onto which I add a vertical scroll bar and
it responds to the EV_WM_VSCROLL event. But when I use the wheel, nothing
happens. Any idea as to how to fix this?
Also, the BC5.02 IDE windows do not respond to the wheel either! Any idea
how to fix this?
TIA
Marvin Avery
 
 

Re:Wheel Mouse

MarvinAvery wrote:
Quote
Hi:

Please don't laugh but I just recently got a "wheel" mouse at work where I
do all my development.

Anyway, I just noticed that my app (BC5.02 and OWLNext) does not scroll with
the mouse wheel. I have a window onto which I add a vertical scroll bar and
it responds to the EV_WM_VSCROLL event. But when I use the wheel, nothing
happens. Any idea as to how to fix this?

Also, the BC5.02 IDE windows do not respond to the wheel either! Any idea
how to fix this?


Is the wheel of the mouse configured correctly in the control panel
settings?
 

Re:Wheel Mouse

MarvinAvery wrote:
Quote
Hi:

Please don't laugh but I just recently got a "wheel" mouse at work where I
do all my development.

Anyway, I just noticed that my app (BC5.02 and OWLNext) does not scroll with
the mouse wheel. I have a window onto which I add a vertical scroll bar and
it responds to the EV_WM_VSCROLL event. But when I use the wheel, nothing
happens. Any idea as to how to fix this?

In standard OWLNext windows the mouse wheel works, for example in my
OWLMaker application.
If the scrollbar is custom created by you, you may have to handle
EV_WM_MOUSEWHEEL event in the window.
Quote
Also, the BC5.02 IDE windows do not respond to the wheel either! Any idea
how to fix this?

In the past I've been able to install a mouse driver which translated
mouse wheel messages to vscroll ones ... but that was a long time ago,
probably when I was working under Win2000.
Now, under WinXP I was unable to find such driver.
Jogy
 

{smallsort}

Re:Wheel Mouse

On Fri, 11 May 2007 10:16:17 -0400, "MarvinAvery"
< XXXX@XXXXX.COM >wrote:
Quote
Hi:

Please don't laugh but I just recently got a "wheel" mouse at work where I
do all my development.

Anyway, I just noticed that my app (BC5.02 and OWLNext) does not scroll with
the mouse wheel. I have a window onto which I add a vertical scroll bar and
it responds to the EV_WM_VSCROLL event. But when I use the wheel, nothing
happens. Any idea as to how to fix this?

Also, the BC5.02 IDE windows do not respond to the wheel either! Any idea
how to fix this?


TIA
Marvin Avery

Oh this is an old problem.
I think there are at least two ways I've been told (and tried) to
solve this.
One was to download the.. I believe microsoft intellimouse driver and
there is an option to send messages slightly differently for the mouse
wheel.
The other was a little app that was written by some windows guru. I
forget his name. it was available I believe via his book and via
msdn.. matt pietrek. if you grep you should be able to find his
program and set it up to work with the ide. Oh hell, google is so
easy.. 10 seconds later.. I think this is it:
www.microsoft.com/msj/0697/hood0697.aspx
try it you'll like it.
hth
 

Re:Wheel Mouse

"Jeff Kish" < XXXX@XXXXX.COM >wrote in message
Quote
On Fri, 11 May 2007 10:16:17 -0400, "MarvinAvery"
< XXXX@XXXXX.COM >wrote:

>Also, the BC5.02 IDE windows do not respond to the wheel either! Any idea
>how to fix this?
>
>
Oh this is an old problem.
I think there are at least two ways I've been told (and tried) to
solve this.
One was to download the.. I believe microsoft intellimouse driver and
there is an option to send messages slightly differently for the mouse
wheel.
The other was a little app that was written by some windows guru. I
forget his name. it was available I believe via his book and via
msdn.. matt pietrek. if you grep you should be able to find his
program and set it up to work with the ide. Oh hell, google is so
easy.. 10 seconds later.. I think this is it:

www.microsoft.com/msj/0697/hood0697.aspx

try it you'll like it.

hth
I tried it and it works! Thanks.
Marvin
 

Re:Wheel Mouse

Quote
>
>www.microsoft.com/msj/0697/hood0697.aspx
>
>try it you'll like it.
>
>hth

I tried it and it works! Thanks.

Marvin


Yes, it works quite well. I will add this link
on the BC5 page at OWLNext site
Jogy
 

Re:Wheel Mouse

On Tue, 15 May 2007 18:22:32 +0300, Jogy < XXXX@XXXXX.COM >wrote:
Quote
>>
>>www.microsoft.com/msj/0697/hood0697.aspx
>>
>>try it you'll like it.
>>
>>hth
>
>I tried it and it works! Thanks.
>
>Marvin
>
>

Yes, it works quite well. I will add this link
on the BC5 page at OWLNext site

Jogy
That is a really old article. I wonder if you can get permission to
post the code directly... anyway cheers, and always nice to see your
responses!
Jeff Kish
 

Re:Wheel Mouse

Jeff Kish wrote:
Quote
On Tue, 15 May 2007 18:22:32 +0300, Jogy < XXXX@XXXXX.COM >wrote:

>>>www.microsoft.com/msj/0697/hood0697.aspx
>>>
>>>try it you'll like it.
>>>
>>>hth
>>I tried it and it works! Thanks.
>>
>>Marvin
>>
>>
>Yes, it works quite well. I will add this link
>on the BC5 page at OWLNext site
>
>Jogy
That is a really old article. I wonder if you can get permission to
post the code directly... anyway cheers, and always nice to see your
responses!

Jeff Kish
I have added a page with more detailed instructions about setting up
BC5.02 to work with the wheel mouse:
owlnext.sourceforge.net/bc5wheelmouse.html
Jogy