Make Auto Click In VB.NET
*
Public Class Form1
Dim aa As Integer
Declare Sub mouse_event Lib "user32.dll" Alias "mouse_event" (ByVal dwFlags As Int32, ByVal dx As Int32, ByVal dy As Int32, ByVal cBotton As Int32, ByVal dwExtraInfo As Int32)
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
aa += 1
TextBox1.Text = aa
End Sub

Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
Windows.Forms.Cursor.Position = New System.Drawing.Point(Windows.Forms.Cursor.Position)
mouse_event(&H2, 0, 0, 0, 1)
mouse_event(&H4, 0, 0, 0, 1)
End Sub

Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click
Timer1.Stop()
End Sub

Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
Timer1.Start()
End Sub

Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Timer1.Stop()
End Sub
End Class

동작 확인 필요

 

이 게시물을

공유하기

SEARCH

MENU NAVIGATION