Hello! My first post here. I have a problem. I 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?
A question more!
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 :)
Here is my code.
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
Windows.Forms.Cursor.Position = New System.Drawing.Point(320, 138)
' here i want to have the "wait-to-the-progressbar-is-100%-loaded"
' here i want to click-function left or right.
End Sub