112 Topics

Member Avatar for
Member Avatar for jkon

Mouse Elbow or Lateral Epicondylitis, a big elephant in the room. Anyone else ? My first computers didn't had any mouse so this wasn't an issue. Since the early 90's I worked in various settings at the same era , some times sitting some times on the floor some times …

Member Avatar for jkon
0
30
Member Avatar for Aqib_5

What is the problem with my mouse on Windows 10? I would appreciate any help in resolving this problem

Member Avatar for Reverend Jim
1
117
Member Avatar for JoshShosh

I have a Microsoft Wireless Mouse and Keyboard set, it's a Microsoft Wireless Optical Mouse 2.0. Both the mouse and keyboard had worked fine until last night when the mouse suddenly just stopped working, and I restarted the PC and the mouse just sits in the middle of the screen …

Member Avatar for Aqib_5
0
272
Member Avatar for tanatos.daniel

I want to determine if the mouse cursor is above a Windows Form and if so, change its color, but I'm kind of new to this and C# also. I was thinking of something like this: public Form1() { InitializeComponent(); if (Control.MousePosition.Y >= 0 && Control.MousePosition.Y <= 499 && Control.MousePosition.X …

Member Avatar for bir_924
2
6K
Member Avatar for Xozz

What I would like to do is to register a couple of shortcuts to move the mouse cursor. The cursor should jump from the one square area of the screen to the other. The question that comes to mind first is: which keys are not used (or at least not …

Member Avatar for Viki_1
0
157
Member Avatar for ddanbe

Sometimes, when I have really, really nothing else to do, I start doodling with some code. Wanted to display the coordinates of the mouse pointer. Thought it was complicated, but it was rather easy. Look, starting at line 94. Then: why not explore a [Bezier curve](https://en.wikipedia.org/wiki/B%C3%A9zier_curve), and what if I …

0
249
Member Avatar for Screwby

Hello, sorry for the rudeness for asking for help on the first post but I'm still a beginner in programming. I am trying to create a GUI for plotting function using Tkinter and Python. In the top a label will show the current position of the mouse in the canvas …

Member Avatar for Lardmeister
0
11K
Member Avatar for Gribouillis

This snippet defines a function [icode]mousepos()[/icode] which gets the mouse position on the screen. The package python-xlib is required.

Member Avatar for woooee
1
6K
Member Avatar for murali2489

Dear Team, I am having difficulties in changing the background color of a button when hovering over it . I am using IE11 in w7. I used the following internal style sheet in my application. I am using DOM explorer developer tool to alter the code for testing purpose. <!DOCTYPE …

0
140
Member Avatar for yaragalla_mural

Hi i have a Div and underneath that there is another div. By default the second div is not visible. Now on mouse over of the first div i am displaying the second div and also on mouse out i am hiding the second div. But the problem is on …

Member Avatar for hericles
0
174
Member Avatar for kranzberry

NOTHING I have hooked up to a USB port works, the computer doesn't recognize anything in a USB port. The devices work when plugged into a different computer, so it's not the peripherals. The optical mouse, for example, has power ( the light comes on), but nothing moves. Any suggestions?

Member Avatar for daniel.gogov
-1
698
Member Avatar for Mya:)

When the user's mouse pointer touch a button I want a message to appear telling the user what that button's function is. Wich function do I use? Thanks

Member Avatar for Mya:)
0
366
Member Avatar for vizz

When mouse is moved in right direction, move follower in left direction, when mouse is moved in bottom direction, move follower in top direction Simply move `#follower` in opposite direction of mouse move events (move fullscreen div) var mouseX = 0, mouseY = 0; $(document).mousemove(function(e){ mouseX = e.pageX; mouseY = …

0
123
Member Avatar for dfjosh

Why do the nested `li`'s in the Navigation ribbon disappear before I can get my mouse to them in IE. It only doesn't work in IE (9 and 8 are the ones I've tested). Here is the site: http://www.seventhheavenvintage.com

Member Avatar for dfjosh
-1
238
Member Avatar for vizz

When mouse is on image display one value from array inside **thought** div's span. Show next value each time. When values ends start with first value [something like this](http://jsfiddle.net/W4fm9/) , but when hover on image var arrValues = [ "one", "two", "three" ]; <img src="images/thinker.png" /> <div class="thought"><span></span></div>

Member Avatar for vizz
0
240
Member Avatar for NewbInProg

Good day guys! Right now I am creating an Simple/Basic Inventory System that just needs to record the Computer in an office and its peripherals. I just started studying C# here in my work and also I have a basic/entry level knowledge in VB6. I just wanna know if you …

Member Avatar for ShadyG
0
250
Member Avatar for ffoeg

Irrespective of what application I am in, the "help" windows keep opening automatically. Am not sure what triggers this. It seems to be some hesitation in moving the mouse. Very annoying. Thought it was a windows feature which could be turned off but it does not seem so. Others I …

Member Avatar for jamsky
0
786
Member Avatar for vizz

Following code of animated menu is working well,little bit, but when mouse pointer is over one list element, items inside all other list elements are animated. I want to animate, items inside hovered list element only. if mouse pointer is over **about us**, animate => div items inside **about us** …

Member Avatar for vizz
0
265
Member Avatar for niche1

Is it possible to trigger the action of a form with a submit button that's outside the form tags? If so, how should this example be rescripted to make the input tag work outside the form tags? <html> <body> <form name="input" action="html_form_action.asp" method="get"> First name: <input type="text" name="FirstName" value="Mickey" /><br …

Member Avatar for razvysb
0
939
Member Avatar for dennis.ritchie

I want to declare an array of type (char / string) confused! dunno which one.. which will store 5 names this code couldnt work char names[5]={monitor,cpu,mouse,joystick,system}; someone guide me please

Member Avatar for deceptikon
0
307
Member Avatar for rubeea.jaffari

Hello everyone, I am designing a simple game with graphics in which I am trying to add a keyListener to my Jframe but the keyListener nor the mouse Listener seem to respond. Here's the code: import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.net.*; import java.io.*; import javax.imageio.ImageIO; public class PaintDemo …

Member Avatar for JamesCherrill
0
439
Member Avatar for Start4me

I'm trying to zoom in on a Picturebox when scrolling the mousewheel, the code below zooms in on the image only to the center of the image, not at the current cursor position. How would I fix this? PictureBox1.Size = New System.Drawing.Size(PictureBox1.Width + e.Delta / 1, PictureBox1.Height + e.Delta / …

Member Avatar for Reverend Jim
0
2K
Member Avatar for Harry_3

Hi guys, so i've had my Logitech G500 gaming mouse for about a year now and have encountered an issue. Earlier this year the right click button messed up so that when i aimed down sights in a came it would constantly go in and out as if i were …

Member Avatar for rch1231
0
213
Member Avatar for grarhakim

Hello gayz, i have a written a screen saver App in C# & WPF, everything is done, the only thing is to exit the screen saver when the mouse move event get fired. if i write: private void Window_MouseMove(object sender, MouseEventargs e) { this.Close(); } the screen saver doesn't starts …

Member Avatar for grarhakim
0
396
Member Avatar for branding4you

Does anyone know of any code that records actions that mouse and keyboard performs on my computer then save the file so I can replay it later I have 340,000 pdf documents to work through The Idea is to ... The recording app will do three things, when I start …

0
238
Member Avatar for Start4me

Hello everybody! I’m trying to create a program in which the user has the ability to move the image with mouse click and ability to zoom in and out by scrolling the mouse wheel. If the user wants to return to the original image size and position, it will be …

Member Avatar for Start4me
0
1K
Member Avatar for shashidhargm
Member Avatar for John_Matt
0
220
Member Avatar for darkofpain

Hi friends, http://www.chevalblanc.com/randheli/en/56-unique-experiences.html Examples of the other layer to pass on this page How do I particularly like the scrolling with the mouse How can I pass a little bit when you scroll with the mouse, the other layer. Please scroll your mouse on the page to get a better …

Member Avatar for darkofpain
0
459
Member Avatar for vbpro

How can I get the Mouse Position from the mousemove event inthe VB.net? I can't find out how to do this.. :rolleyes:

Member Avatar for Luc001
0
31K
Member Avatar for schroaus

I am making a game in microoft visual basic. It is virtually finished, but I am having a problem. When you hit the start button a timer is activated making the character in the game equal mouse position. The problem is that the character is not actually going to the …

Member Avatar for schroaus
0
671

The End.