473,804 Members | 3,068 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MouseWheel

I have a form with buttons and a custom control I wrote showing a list of
items. I would like to scroll the list when the mouse is over the control
and the mouse wheel is moved but yet don't want to set the focus to my
control. How can I do this. Currently, I set the focus to my control when
the mouse hovers over my control but this could cause a user problems with
the lost focus event on any other control he is using at the time. It seems
that only the control with the focus receives the MouseWheel events. I also
tried the capture method but it doesn't capture the mousewheel events.

--
Dennis in Houston
Nov 21 '05 #1
5 2703
Unless you have more than one of these custom controls (albeit very
possible) would the form's mousewheel event suffice to scroll your
control?

Carl Summers

Nov 21 '05 #2

When the mouse wheel is scrolled check that the cursor is positioned over
your control. If it is then scroll your control.

--Robby
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:BA******** *************** ***********@mic rosoft.com...
I have a form with buttons and a custom control I wrote showing a list of
items. I would like to scroll the list when the mouse is over the control
and the mouse wheel is moved but yet don't want to set the focus to my
control. How can I do this. Currently, I set the focus to my control
when
the mouse hovers over my control but this could cause a user problems with
the lost focus event on any other control he is using at the time. It
seems
that only the control with the focus receives the MouseWheel events. I
also
tried the capture method but it doesn't capture the mousewheel events.

--
Dennis in Houston

Nov 21 '05 #3
Thanks for answers. I am writing a custom control which may be used by
different users and I was trying to handle scrolling automatically from
within my control without the need for the user to write any code outside of
the control.

I was thinking of trying to intercept all window's messages and pull out any
wheel scroll events if the mouse is over my control, if not, then pass on the
messages but not sure how to do this.

"Robby" wrote:

When the mouse wheel is scrolled check that the cursor is positioned over
your control. If it is then scroll your control.

--Robby
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:BA******** *************** ***********@mic rosoft.com...
I have a form with buttons and a custom control I wrote showing a list of
items. I would like to scroll the list when the mouse is over the control
and the mouse wheel is moved but yet don't want to set the focus to my
control. How can I do this. Currently, I set the focus to my control
when
the mouse hovers over my control but this could cause a user problems with
the lost focus event on any other control he is using at the time. It
seems
that only the control with the focus receives the MouseWheel events. I
also
tried the capture method but it doesn't capture the mousewheel events.

--
Dennis in Houston


Nov 21 '05 #4
I strongly recommend against this. You're trying to work around standard
Windows behavior. If I'm using your control on a form I'm building, and I
have other controls that also make use of the mouse wheel, I would be very
annoyed to scroll those other controls and also find your control moving.
The nice thing about the mouse wheel is that it doesn't have to be over the
control to scroll; it can be anywhere on the screen. I might happen to have
it over your control.

If easily scrolling your control is important to me--for example, if it's
the main control on the form, or something like that--then I will code and
design the form to make sure that control has focus as often as is
reasonable. IMO, you should not try to circumvent the standard behavior in
this case. If you were merely designing a form of your own--not a control
for others to use--then what you want to do might be a good idea.

Brian
--
Brian Schwartz
FishNet Components
http://www.fishnetcomponents.com
Building better tools for developers - Be part of it!
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:0E******** *************** ***********@mic rosoft.com...
Thanks for answers. I am writing a custom control which may be used by
different users and I was trying to handle scrolling automatically from
within my control without the need for the user to write any code outside of the control.

I was thinking of trying to intercept all window's messages and pull out any wheel scroll events if the mouse is over my control, if not, then pass on the messages but not sure how to do this.

"Robby" wrote:

When the mouse wheel is scrolled check that the cursor is positioned over your control. If it is then scroll your control.

--Robby
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:BA******** *************** ***********@mic rosoft.com...
I have a form with buttons and a custom control I wrote showing a list of items. I would like to scroll the list when the mouse is over the control and the mouse wheel is moved but yet don't want to set the focus to my
control. How can I do this. Currently, I set the focus to my control
when
the mouse hovers over my control but this could cause a user problems with the lost focus event on any other control he is using at the time. It
seems
that only the control with the focus receives the MouseWheel events. I also
tried the capture method but it doesn't capture the mousewheel events.

--
Dennis in Houston


Nov 21 '05 #5
Take a look at the System.Windows. Forms.Control class. The events you want
to pay particular attention to are Control.MouseEn ter, Control.MouseHo ver,
Control.MouseLe ave and Control.MouseWh eel.

--Robby

"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:0E******** *************** ***********@mic rosoft.com...
Thanks for answers. I am writing a custom control which may be used by
different users and I was trying to handle scrolling automatically from
within my control without the need for the user to write any code outside
of
the control.

I was thinking of trying to intercept all window's messages and pull out
any
wheel scroll events if the mouse is over my control, if not, then pass on
the
messages but not sure how to do this.

"Robby" wrote:

When the mouse wheel is scrolled check that the cursor is positioned over
your control. If it is then scroll your control.

--Robby
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:BA******** *************** ***********@mic rosoft.com...
>I have a form with buttons and a custom control I wrote showing a list
>of
> items. I would like to scroll the list when the mouse is over the
> control
> and the mouse wheel is moved but yet don't want to set the focus to my
> control. How can I do this. Currently, I set the focus to my control
> when
> the mouse hovers over my control but this could cause a user problems
> with
> the lost focus event on any other control he is using at the time. It
> seems
> that only the control with the focus receives the MouseWheel events. I
> also
> tried the capture method but it doesn't capture the mousewheel events.
>
> --
> Dennis in Houston


Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1010
by: deko | last post by:
Is it possible to disable the mouse wheel WITHOUT using a DLL? I've looked at Microsoft Knowledge Base Article 278379 (http://support.microsoft.com/default.aspx?scid=kb;en-us;278379), which explains how to create a DLL and implement code to disable the mouse wheel, as well as Mr. Lebans' code in MouseWheelHookA2K.zip (http://www.lebans.com/mousewheelonoff.htm), but both require a DLL. Sure, it's easy enough to run:
2
3006
by: Jack | last post by:
Hi all, I searched the archives and found everyone happy with Stephen's MouseWheel On/Off code except for those with subforms. Stephen's page indicates that he has added code to handle subforms ("Bug Fix for SubForms with ScrollBars. Bug fix for SubForms without visible ScrollBars.") - BUT I still can't get it to work on my app with my subforms. I'm using Access 2000, It works fine on the main forms but not on the
0
1926
by: Mark Johnson | last post by:
Seems the mousewheel isn't controlled in earlier versions like A97 or 2000. So you can accidentally use the mousewheel to scroll to the next record in an unbound form. And that can cause Access to hang-up, with an unbound form. I had this little popup box that was an alternative to editing text in a memo field. And every now and then I'd forget about the mousewheel problem and just habitually scrool as if editing in U-edit or something....
1
2228
by: Niranjan | last post by:
I have a data entry form. I am trying to avoid users accidentally using the mouse wheel and saving an incomplete record (or saving record that skips the validation routine). In Mousewheel event, I have a boolean variable (blnMousewheel) that is set to true. In the beforeupdate form event, an If statement cancels any changes if the blnMousewheel is true. It also sets the boolean variable to false. It works most of the time, but some...
7
19998
by: Daisy | last post by:
I've got a control with a scrollbar docked to the right-hand side. The scrollbar works fine, I've got an event: bottomControlVScroll.Scroll += new ScrollEventHandler(HandleBottomThingScroll); Which calls this.Invalidate() on my control, and all is good. However, the MouseWheel does naff all. I understand this is probably because my mouse is over my control, and not the scrollbar. How can I set the MouseWheel event on my control to...
1
11316
by: Nicholas Shewmaker | last post by:
(I apologize if this posts twice. My AVG is being fussy.) From what I've read, MouseWheel is a very tricky event. I have replaced my Python tcl84.dll and tk84.dll files with those in the ActiveTcl distribution to fix the crashes caused by the event. Then, I managed to see that my test script (see code below) was registering the event by printing the delta value (+/- 120). ----------------- from Tkinter import *
7
11518
by: James | last post by:
Hi, I have a Windows Forms application which uses multiple child forms (MDI interface). The height of one of the child forms is larger than the height of the MDI client area, so when this form is visible, the vertical scroll bar of the MDI parent appears automatically. What I want to do is write a routine within the MouseWheel event of the MDI
3
3594
by: Dave K | last post by:
I seem to be missing something... I want to use a mousewheel event in my VB.NET app... and there's a lot of example code on the net showing how to use the mousewheel event... and the .NET docs discuss the mousewheel event... but there doesn't seem to BE a mousewheel event. in VS 2003 or 2005, in C# or in VB.NET... and on the couple systems I've checked. I can't find a single control that gives me a "MouseWheel" event option in it's...
0
2497
by: WaterWalk | last post by:
Hello. When I tried to make Tkinter canvas widget respond to MouseWheel event on Windows XP, I failed. The canvas just doesn't receive MouseWheel event. I used bind_all to find out which widget receives this event and the result showed that only the top Tk widget gets it. This is really annoying. I wonder if this problem exists on other platform. I googled, but found no appliable solution, so I wrote one as following. It's not perfect,...
1
2481
by: =?Utf-8?B?UmljaA==?= | last post by:
In a database search application (vb2005), the user wants to be able to scroll through records using the mousewheel. The data display form contains textboxes for the main data and a datagridview for the detail data for each main record. The form also contains btnBegining, btnPrevious, btnNext, btnEnd. In the btnNext.MouseWheel event I can increment/decrement the main data currencymanager position of the main dataset (depending on...
0
9705
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9575
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10564
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10073
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9134
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7609
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6846
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5645
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4288
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.