Make A Programm That Manipulates By Mouse?
Oct 4, 2010I need to make a programm that manipulates by mouse: moves cursor to specified places, clicks at different points and selects some tables and copy them in clipboard.
View 4 RepliesI need to make a programm that manipulates by mouse: moves cursor to specified places, clicks at different points and selects some tables and copy them in clipboard.
View 4 Repliesi have database(ms access)in my web site i would like to get email stocked in my database to my programm(vb 2008)
View 5 RepliesI have a form that has a tab control on it. The tab control contains three tab pages.I have been coding for some time now and just discovered that I could not access one of the pages; the IDE complains that the object is undeclared.
View 1 RepliesI am try to make a character that follows the mouse, but I cannot find any way in vs 11 to get the mouse coordinates? It is a vb application, could someone please help me out? I tried pointer.location, pointer.margin, but still cannot do it.
View 5 RepliesI have programm what calculates KiloGramm price.It works so that if I enter the amount(in KG) and price then it calculates the Kg Price.
But it calculates wrong when I insert "," not "." . My programm code is so:
[code]...
how to Expert Developer Design His Programm Or Software,First THink Before Developing StartIn VB First Design Form or Design After COding.
View 2 RepliesI read that the use of ini-files is a bit outdated and the use of XML is now. I have searched he net now for some time to find examples/tutorials about this 'feature", but I only can find C# examples.
View 11 RepliesI have a font in my programm resources that I wanna copy on form load to windows fonts I tried (my.computer.filesystem.filecopy) but i get this error (cant convert binary to string)
View 11 RepliesI'm a really beginner so i want to know if its possible to make the mouse move to certain co-ordinates outside of your form and then click , and then pause before repeating.
View 3 Repliestopmost is great, but when a game or windows is locked, it's not on top anymore, but the mouse is. so, does anyone know a way to make it fully on top like the mouse?
View 2 RepliesI have two custom action listers. One that handles Mouse.Click and one that handles Mouse.MouseDown. My question to you is, can I delay the mouse down event so that it does not intefere with the code of the Mouse.Click event? I have tried adding a timer and waiting x amount then setting a bool value to true, but the code executes to fast and it skips the other code.
View 6 RepliesI'm trying to make a game involving falling objects and needing to click on them before they hit the ground. I have that part in place, but I was wondering how you made the mouse experience "gravity." I was planning on having the mouse fall at an increased rate as the levels got harder. Just to clarify, I want the mouse to be "pulled down" where the user would have to push the mouse up to keep it in place or to advance. I want to do this on both axes. This is what I have so far, but I think I'm way off because I'm getting nowhere the desired result. [code]
View 2 RepliesImports System
Imports System.Drawing
Imports System.Windows.Forms
[code]....
I have a textbox and I have a button. Okey, when the button is clicked I want my mouse to go and click a certain position on my screen. How can I do that using Visual basic 2008 express?
i want to make my app.. that when mouse is over app..then there is picture box that is following mouse position.
View 3 RepliesNow I got this "problem"... I'm making an application in Visual Basic 2008 Express Edition with some mouse options, and I was wondering... Do some of you have a clue on how to make the mouse go to on position, right click, move somewhere else, and left click, and then repeat it a X amount of times? The X should have the options to change its value.
View 1 Repliesin VB.NET. how do i make a mouse click somewhere on the screen?
View 4 RepliesI am trying to make a panel move with the mouse.
Just like the iPhone where you press down and move your finger up or down and the items on the page move.
I am tring to do the same type of affect with the mouse and a panel.
When a user clicks the left mouse button and moves the mouse up or down moving the panel up or down. but I want to be able to click anywhere on the screen.
I'm making a minigame where the user moves their mouse around a picture and a little image of a stick figure follows that image. I've got part of it to move, but it only moves up and down. I've tried to change the code to go by width and height but it wont go into debugging even though it shows know error.[code]...
View 4 RepliesIs there a way to make a pop up (like a msg boxs) if the mouse goes over a panel?
View 1 RepliesI have a problem and very new to this, I want make a simulated mouse click. When i press a button I want it to move to a special place and then execute a mouseclick.. this is my code. Private Declare Sub mouse_event Lib "user32" (ByVal dwflags As Long, ByVal dx As Long, ByVal dwextraininfo As Long)
[Code]...
A call to PInvoke function WindowsApplication1! WindowsApplication1.Form1:: mouse_event has unbalanced the stack. It is probably because the managed PInvoke signature does not match, the unmanaged mlsignaturen. Check that the call rule and parameters for the PInvoke signature match-the unmanaged mlsignaturen.
I want to make form move by mouse when i hold click in any place and move it like windows media player
View 4 RepliesI have a program and i want every time the timer ticks the mouse clicks on its own but how would i get it to click?
View 9 RepliesWhat is the Simplest code to make the mouse click once?
View 3 RepliesI want to make a Windows form that it's exist a button, and if you click that button, then the mouse cursor will move to a choosen X and Y coordinates and after that the cursor will click left or right. But how do I make that?
On my window form (the program). Their is a progressbar and a webbrowser. How can i make so the click-function waint untill the progressbar is 100% loaded, then click? The progressbar is follow the webbrwoser, you know
[code]...
Is there any event for Right Mouse Click on Visual Basic?I wish to have a code or any thing so it allows a specific code to be done while Right Click while if Left Click another code will be done
View 7 RepliesOk i have a numeric UpDown and if it is set to 1 i want the mouse to automaticly click every one second or if it was set to 2 then every 2 seconds but how would i make the mouse click and how would i get it to know when 2 seconds are over?
View 7 RepliesHow do i make the mouse click by typing like Mouse.click.do if you get what i mean.
BEcause i need it to go to a position onscreen and click.
Also how would i do rightclick?
I have very much a noob at coding for VB. I was wondering if i can make it so if u click button1 it will move your mouse to a location. Buuutt if its possible. Smoothly, not super fast the mouse is magically at your location.
View 4 RepliesHow do I make a Tooltip appear when the mouse is hovering over a Picture Box, that says:
<Combat Training>
When you use an attacking skill you are healed 1% of the damage done.
I have a context menu strip on my application but I would like to associate it when a user right clicks on a list box in my application. The context menu appears on my mouse right click event in my listbox, but it appears at the top of my application instead of where I right clicked. How do I associate the list box control with the contextmenu.
NOTE: Maybe there is another control besides a contextmenu that I want to use here.