|
-
Sep 28th, 2002, 07:29 AM
#1
Thread Starter
New Member
SendKeys Question?
Can you sendkeys to an non active app? somehow??
-
Sep 28th, 2002, 07:44 AM
#2
Let me in ..
-
Sep 28th, 2002, 08:56 AM
#3
Fanatic Member
Yes that is indeed possible, I used it one time to make a save progress of images quicker. I had to scan about 10 pages and select little 5x5cm pieces, then cut those and save them, hell of a lot of work. Until I used the SendKeys.
I did it like this:
VB Code:
Private Sub cmdGo_Click()
Me.Hide
SendKeys "^C", True
'etc. etc.
End Sub
No matter how fool-proof your program is, there will always be a better fool.
Was a post helpful to you? Rate it!
-
Sep 28th, 2002, 09:02 AM
#4
Thread Starter
New Member
Huh?
I don't understand how you mean that should work,..
what I mean is for example to sendkeys to an minimized notepad app,..
-
Sep 28th, 2002, 09:15 AM
#5
Fanatic Member
Re: Huh?
Originally posted by Svenne
I don't understand how you mean that should work,..
what I mean is for example to sendkeys to an minimized notepad app,..
Oh, sorry I misunderstood the question, I thought you wanted to use sendkeys from a non-active app.
I don't think to non-active is possible.
No matter how fool-proof your program is, there will always be a better fool.
Was a post helpful to you? Rate it!
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
|