473,785 Members | 2,641 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

need to diable right mouse button (special case for elderly person)

Hello. My 80+ year old father has recently decided to get his first
computer. Due to his age (and I suspect lack of playing pong as a child
like I did) he lacks the manual dexterity to use a mouse well. He is
frequently missing the left mouse button and hitting the right, or less
often the middle (wheel) buttons. While he is very slowly getting better
with practice, the frustration level is high for him as a result of this
(he gets very confused, for example, when "strange" contect menues start
popping up).

Since he is not really doing anything that requires the use of the right
mouse button (much less the wheel) I was thinking the simple solution
would be to disable the right and middle buttons, or even better, make
them all send a left button signal.

I cannot find a way to do this in winxp home, however, so I was wondering
if there might be a way to right a little program that would exist as a
daemon and intercept mouse clicks and translate them all to left clicks.
I have a little experience with VB coding but writing a daemon that
operates that closely with hardware is a little over my head. I was
hoping for some pointers in the right direction or suggestions for an
alternate solution.

TIA
Nov 20 '05
13 2310
Hi Herfried,
Can you define your acronyms for me:
-SCNR

-ROFL

Thanks,
Christian Blackburn
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> wrote in message
news:bp******** *****@ID-208219.news.uni-berlin.de...
* "EricJ" <ericRéMo**@Thi Somnipack.be> scripsit:
are you telling people to get a mac? ;p
Why not design a single button mouse?


No, I am telling them to use .NET.

SCNR

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #11
* "Christian Blackburn" <Ch************ *****@Damn.Spam @Hotmail.com> scripsit:
Can you define your acronyms for me:
-SCNR
Sorry, could not resist.
-ROFL


Rolling on the floor laughing.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #12
Christian Blackburn wrote:
Hi James Bond,
Another thing I'd like to mention is that sometimes when you help
people you're actually hindering them. I think writing a mouse
button wrapper would be one of those times.
Adios Amigo,
Christian Blackburn


Naah, it's just a set of "Mouse Training Wheels" that will be taken off in a
little while. <g>

-- Mark
Nov 20 '05 #13
"EricJ" <ericRéMo**@Thi Somnipack.be> wrote in
news:3f******** *************** @reader3.news.s kynet.be:
(ok i admit i have never used xp home, but i can't imagine you cant do
it there)
in xp pro its easy
go to control panel/ mouse (the first tab you get there should be
buttons) you can set the right and wheel button to click there (it wil
give a left click then.

its possible this is something mousedriver specific but it should be
there

as to building a program for that. It should be possible , but i don't
think that would be easy as windows programs tend to react to mouse
events on their own forms only.
i used to have a vb6 app that used a windows api to do mouse things
(record movement, clicks and replay them) but that was vb6 and win98
:/.

try the mouse settings first

hope it helps

eric

"James Bond" <jb***@universa lexports.com> wrote in message
news:Xn******** *************** ***********@216 .168.3.30...
Hello. My 80+ year old father has recently decided to get his first
computer. Due to his age (and I suspect lack of playing pong as a
child like I did) he lacks the manual dexterity to use a mouse well.
He is frequently missing the left mouse button and hitting the right,
or less often the middle (wheel) buttons. While he is very slowly
getting better with practice, the frustration level is high for him
as a result of this (he gets very confused, for example, when
"strange" contect menues start popping up).

Since he is not really doing anything that requires the use of the
right mouse button (much less the wheel) I was thinking the simple
solution would be to disable the right and middle buttons, or even
better, make them all send a left button signal.

I cannot find a way to do this in winxp home, however, so I was
wondering if there might be a way to right a little program that
would exist as a daemon and intercept mouse clicks and translate them
all to left clicks. I have a little experience with VB coding but
writing a daemon that operates that closely with hardware is a little
over my head. I was hoping for some pointers in the right direction
or suggestions for an alternate solution.

TIA



Hmmm, these options are not available on his WinXP Home computer. The
only options under the buttons tab are to swap the right and left buttons
and set the dbl-click speed. Perhaps it is driver specific (he has a
gateway computer and whatever standard mouse driver that WinXP
installed). I will look into the availability of some other drivers.
Thanks for the info.
Nov 20 '05 #14

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

Similar topics

6
7874
by: R.Wieser | last post by:
Hello All, I'm trying to get a "Virtual Listbox" to work. I've currently got a form, and used CreateWindowExA to create a ListBox with the LBS_OWNERDRAWFIXED and LBS_NODATA flags on it. I've allso subclassed the window and do see all kinds of WS_??? messages coming by. But now I'm stuck :-\ I've got *no* idea what to do next, and all my searching on the web leads me
5
1681
by: Someone | last post by:
I know many don't like having right click disabled, however this is a unique case where clients using viewing this particular site will not be world wide so it's not going to affect too many people. I have searched google archive for this newsgroup for a solution but similar posts never received answers. I have a script that disables right mouse button that works in IE and older versions of NS but it doesn't work in NS7. Can anyone...
20
2153
by: dukeleto | last post by:
I know this is an annoying thing on some sites. I have set some images in an online gallery to have their own java po up window that is set to be the same size as the image. I would like to set ONLY the pop up window so it does not allow th user to right click. Now I did a search, and found some options, but when you right click it gives the user an annoying pop up saying stuff like "you cant d
3
10671
by: Michael Schuerig | last post by:
I'm trying to use the right mouse button to open a popup on a specific element. The popup is triggered by a mouseup event. However, on mousedown the standard context menu opens. To get around this, I listen to that event, too, and stop it (preventDefault, stopPropagation). That works on Konqueror (and presumably other KHTML-based browsers), but not on Firefox. The latter still opens its context menu. My search has turned up literally...
18
3070
by: jrhoads23 | last post by:
Hello, I am trying to find a way to tell if an .NET windows forms Button (System.Windows.Forms.Button) is "depressed" (pushed down). For my application, I can not use a check box control set to button style, I must use a System.Windows.Forms.Button. I can not find a way to tell when it is momentaraly pressed. I tried calling the API SendMessage with the button handle and BM_GETSTATE to get the state of the button. This will only return...
2
1601
by: Robert W. | last post by:
I want to introduce a special "Admin" menu item into my WinForms app. It'll normally be hidden but activated by a special key-sequence. To make it more visible to a user (ex. while talking with a support person on the phone) I thought of shifting it several centimetres to the right of the "Help" menu item. The only way I could think to do this was to add a special spacer menu item in between Help and Admin. It works but I'm wondering...
0
1546
by: =?Utf-8?B?QW5kcmV3?= | last post by:
I have 6 small touch screens that are connected to my pc to a special video card. The video driver splits up my screen in six sections, 3 across the top and 3 across the bottom. They are all even size. Now the video card displays a section of my screen to the corresponding touch screen. I have a separate app that release the touch(mouse) location on the small touch screen back to my main pc and moves the mouse to the appropriate location on...
4
3143
by: Przemek M. Zawada | last post by:
Dear Group, I have written a software (C#/VS2005), which enter current directory, match all requested files and rename it recursively (removing special chars, etc). What I want is to add in right mouse click menu an item, ie. "Re-write this directory" when user clicks in ie. file explorer ($HOMEDIR/My Pictures via IE) right mouse button. This menu has items like: 'View, Sort, Copy, Paste, Cut, Delete, New --Submenu --New folder, New...
7
3323
by: Dave | last post by:
Hello All, These one may be a bit tricky, and what I'd like to do may not even be possible. I would love to hear any ideas you guys have for solving this. Here is the situation: I have a form that displays the high-level data for a set of records in continuous forms mode. I have a simple command button that will open another form with the details of the selected record.
0
9645
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
10148
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9950
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
8972
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
7499
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
6740
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
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4053
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
2
3646
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.