|
-
Jul 19th, 2007, 10:18 AM
#1
Thread Starter
New Member
Touch the screen by command
Hi
I want to send a click command on a particular location, exactly like a TOUCH ON THE SCREEN by codings. Is it possible (VB.NET 2003)
Regards
Mohamed Faisel
-
Jul 19th, 2007, 10:37 AM
#2
Frenzied Member
Re: Touch the screen by command
Hi,
you could probably do
Dim x As New System.Windows.Forms.MouseEventArgs(Windows.Forms.MouseButtons.Left, 1, 100, 200, 0)
form1_mouseDown(Me, x)
but just out of interest, why?
Pete
-
Jul 19th, 2007, 04:54 PM
#3
Re: Touch the screen by command
Yeah, what is the advantage of touching the screen in a certain place? That would have the same effect as calling the click event of a control at that location if a control exists there and responds to click events. Calling the control directly would be easier than simulating a click event.
My usual boring signature: Nothing
 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|