112 Topics

Member Avatar for
Member Avatar for Andy90

I want to make an application in vb.net which will allow user to use mouse in a different way. i.e Dwell Clicking. Suppose user moves mouse pointer at particular location and if the user doesnt move the mouse pointer from that location for 2 seconds then single click will be …

Member Avatar for Unhnd_Exception
0
215
Member Avatar for seamus400

I was wondering if anyone could help me compile code which will actually work for my comiler. I've found many examples and two good references for... keyboard [url]http://www.codeproject.com/KB/system/keyboard.aspx[/url] and mouse [url]http://msdn.microsoft.com/en-us/library/ms646260[/url] ...but have never actually gotten a working version to run and therefore haven't been able to fiddle around with …

Member Avatar for seamus400
0
1K
Member Avatar for happygeek

[ATTACH=RIGHT]22124[/ATTACH]If you are a Windows 7 user then maybe you have longed for a mouse designed just for you and your Operating System, but somehow I doubt it. What you want is a mouse that just works the way you expect and doesn't leave your wrist feeling like you've been …

Member Avatar for happygeek
0
401
Member Avatar for thecoolman5

hi, i am writing a program for my dad. I want it to keep the mouse in x=500 y=500 while waiting for input. So its asking for the password and if you try to move the mouse, it'll put the mouse back in x=500 and y=500 and have keep looping …

Member Avatar for pseudorandom21
0
649
Member Avatar for staticclass

Hi, I'm developing an application which has a treeview and a crystal report viewer. There are a lot of other stuff too, but I want to make the user be able to change the size of the treeview with the mouse (see the picture) [url]http://imageshack.us/photo/my-images/3/mousedrag.png/[/url] how can I do this? …

Member Avatar for k.d.m
-1
161
Member Avatar for solvesak

Hi I have been trying to implement the zooming of images on mouse over but could not do it because: 1) I am not doing the 'list' kind of display of images. 2) I dont want other images at several positions to be distorted while one image zooms. 3) I …

Member Avatar for divyakrishnan
0
133
Member Avatar for Dan08

Hi everyone. Well I've been trying to figure this out for a quite a long time now by looking at some examples and searching the web, reading some tutorials and so on, but I don't even know where to start yet. Can you explain to me about the sprites too …

Member Avatar for TrustyTony
0
3K
Member Avatar for python01

Hi all, I have just modified a mouse so that the left mouse button gets activated when a puck hits the net in ice hockey... Now all I need is for python to react to the hit by sending an output of voltage for a period of time and adding …

Member Avatar for python01
0
177
Member Avatar for happygeek

Having just written [URL="http://www.daniweb.com/reviews/review345593.html"]a glowing review of the new Microsoft Arc Touch mouse[/URL] in which I was struck by the sheer beauty of the thing, I thought it only right to take a look at what is quite possibly the ugliest mouse in the world to get my reviewing karma …

Member Avatar for cisco3750
1
537
Member Avatar for Hazardous_Byte

Hey everyone! It has been a very long time since I posted, but I have a new question for you guys. So, I made a sort of "remote-desktop" program that allows me to move the mouse from another computer. However, the mouse will move to where I want it but …

0
161
Member Avatar for El3et

The right click on my laptop has stopped working properly. You can drag and highlight things with it but no normal right click functionality. This occurs with the touch pad and when a USB mouse is plugged in also. No problem when in administrator account. All settings are default nothing …

Member Avatar for tracer357
0
179
Member Avatar for Killacat87

Hi i own the logitech Nano Vx laser mouse, which worked fine for nearly a year. But recently, the cursor stopped moving, and the whole mouse wouldn't work. I tried changing batteries, restarting the computer, installed the Set point Software, and tried it out on other computers and usb ports, …

0
118
Member Avatar for happygeek

Looks, I am often told, can be deceptive. This is certainly the case as far as the Microsoft Arc mouse and the new Arc Touch mouse are concerned. Sure, at first glance there is not much different about the two in terms of that innovative arcing design; but look closer, …

Member Avatar for Goddard
2
776
Member Avatar for Kunal Aggarwal

[CODE]void CScreenCoordDlg::OnMouseMove(UINT nFlags, CPoint p) { GetCursorPos(&p); m_ValX = p.x; m_ValY = p.y; UpdateData(FALSE); }[/CODE] I used the following code to get the mouse coordinates on mouse move. But the problem is as soon as the mouse moves out of the dialog window it stops updating the mouse coordinates. Although …

0
106
Member Avatar for martin11ph

Is there any code that will enable me to click on portions of the form with the use of coordinates? I know most of you find it easier to just use controlname.click but it is not possible for my application. Hope someone can help. Thanks.

Member Avatar for AndreRet
0
2K
Member Avatar for benny2010

Dear all, i am trying to get my sprite to be dragged around the screen by clicking the mouse, i can get it to attach to the mouse but cannot get it to unattach itself, i coded the if not mouse click then set mouse attach to false but it …

Member Avatar for benny2010
0
153
Member Avatar for happygeek

The Swiftpoint Mouse is primarily designed with one purpose in mind, and that is to replace the touchpad on your laptop or netbook. Indeed, unlike any mouse I've ever used (and that includes the smallest of portable units) the Swiftpoint can be comfortably operated within the confines of the palmrest …

Member Avatar for happygeek
2
745
Member Avatar for taylorc8

Hi, I'm trying to use an input device like a joystick as a mouse, and I've got some good behavior for desktop use by polling the state of the device in a loop and doing some work with the values, then using SendInput with some INPUT structures to make the …

0
102
Member Avatar for gshauck

I've been working on this problem for a while. The first problem I notices was the computer getting slow. Then my USB wireless mouse quit working. I started using a PS/2 mouse. That mouse started to have problems. I am pretty sure that it was a problem in the wiring. …

Member Avatar for gerbil
0
546
Member Avatar for langejan

Hi I have had win7 for quite a while now, and has frequently had a strange problem with my mouse (2 different mice and touch-pad). Sometimes it only works in one program, e.g. it works fine in Firefox, but in all other programs (desktop, skype, WoW etc.) it "unmarks" the …

Member Avatar for langejan
0
101
Member Avatar for shahramjaved

Two users are connected with a server if user A move his mouse on his browser window than the shape on user B browser Window should be move. Any idea how i can do this.

Member Avatar for scrappedcola
0
155
Member Avatar for mknight_13101

Afternoon, I'm running a xp system w/ USB keyboard and mouse. Mouse has decided to have a mind of its own. Essentially when i want to click on something it does not respond. It is almost like, when I try and click on a window, it immediately goes to the …

0
119
Member Avatar for shawnisalk

Hi, I'm trying to write a program for Windows that will control the mouse with the keyboard, but I'm not sure I understand how Windows works. My theory is that I will need to send mouse event messages for the mouse and hook the messages from the keys that are …

Member Avatar for shawnisalk
0
318
Member Avatar for buster2209

I want to be able to double left click my mouse on an entry in a populated listview window and pass that variable (as a string) to a textbox. Can anyone give me some sample code?

Member Avatar for Geekitygeek
0
134
Member Avatar for patkeraudren

In my projet, I can't find how to determine which image and pixel coordonate when I clicking image in 2 different ScrollArea. The result was showing in statusBar() area. (See screenshot) I put a code in txt file with 2 jpg use with it. Thanks in advance. [CODE] from PyQt4.QtCore …

0
95
Member Avatar for ladytiger

my boyfriend is having problems with his mouse. he has an imac computer with snow leapord and he is using a laser mouse by dell. that mouse always worked for him but for some reason it isnt moving at all, it's been doing that the entire day. i told him …

Member Avatar for Danarchy
-1
160
Member Avatar for fpsasm

Hi, I know that there are a lot of webpages devoted in telling me how the OpenGL mouse function works, but I still don't understand. What I need to know, when my: [CODE] void processMouse( int button, int state, int x, int y){ ... } [/CODE] Returns x,y. What does …

Member Avatar for sfuo
0
194
Member Avatar for bettersaid

[CODE]from Tkinter import * class ButtonHandler: def __init__(self): self.root = Tk() self.root.geometry('600x500+200+200') self.label = Label(self.root, text=str(self.mousedown)) self.can = Canvas(self.root, width='500', height='400', bg='white') self.can.bind("<Motion>",lambda x:self.handler(x,'motion')) self.can.bind("<Button-1>",lambda x:self.handler(x,'press')) self.can.bind("<ButtonRelease-1>",lambda x:self.handler(x,'release')) self.label.pack() self.can.pack() self.root.mainloop() def mouseDown(self, event ): return 1 def handler(self,event,x): if x == 'press': self.mousedown = 1 elif x == 'release': …

Member Avatar for TrustyTony
0
188
Member Avatar for patkeraudren

In my projet, I can't find how to determine which image and pixel coordonate at clicking image in different ScrollArea. The result was showing in statusBar() area. (See screenshot) I put a code in txt file with 2 jpg use with it. Thanks in advance.

Member Avatar for patkeraudren
0
99
Member Avatar for LandlordKeatham

I have a Toshiba Satellite X205-SLi2 with Vista Home Premium. Ya, I know. I should be shot for it. I tried to put XP pro on it and finally took it in and they said Toshiba didn't write some dll that can run XP Pro on this laptop. Gates is …

Member Avatar for avadhraj12
0
237

The End.