Page 1 of 1
Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 1:14 am
by astheyfall
Hello, I am in need of a tutorial on how to make a program click on set co-ordinates for my next program you can enter the X and Y Cords in a textbox or two (Doesn't matter) and you can set how many times you want it to do it and a button to start it and you can set the speed of the movement.
You will get credit, Thanks

Re: Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 2:06 am
by Napster1488
You mean a Program that Controls your Cursor,and it clicks on specified Screen Positions ?
Re: Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 2:09 am
by Napster1488
If u meaned that,then here...i found this Code with Google maybe u will give it a try.
Code: Select all' Access the GetCursorPos function in user32.dll
Declare Function GetCursorPos Lib "user32" _
(lpPoint As POINTAPI) As Long
' Access the GetCursorPos function in user32.dll
Declare Function SetCursorPos Lib "user32" _
(ByVal x As Long, ByVal y As Long) As Long
' GetCursorPos requires a variable declared as a custom data type
' that will hold two integers, one for x value and one for y value
Type POINTAPI
X_Pos As Long
Y_Pos As Long
End Type
' Main routine to dimension variables, retrieve cursor position,
' and display coordinates
Sub Get_Cursor_Pos()
' Dimension the variable that will hold the x and y cursor positions
Dim Hold As POINTAPI
' Place the cursor positions in variable Hold
GetCursorPos Hold
' Display the cursor position coordinates
MsgBox "X Position is : " & Hold.X_Pos & Chr(10) & _
"Y Position is : " & Hold.Y_Pos
End Sub
' Routine to set cursor position
Sub Set_Cursor_Pos()
' Looping routine that positions the cursor
For x = 1 To 480 Step 20
SetCursorPos x, x
For y = 1 To 40000: Next
Next x
End Sub
Re: Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 2:15 am
by astheyfall
Can you explain where everything goes or tell me the link?
Re: Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 2:56 am
by Napster1488
Just Put all Code in a Module or something,and play something around with it...i didnt tested it,soo..
BTW here is the Link
http://support.microsoft.com/kb/152969
But its in German,maybe use Google to translate to your Language.
Re: Click on Screen Co-Ordinates
Posted: Tue Sep 06, 2011 2:15 pm
by mandai