Tagged Questions

A method that sends one or more keystrokes to the active window as if they were typed at the keyboard.

learn more… | top users | synonyms

7
votes
2answers
867 views

SendKeys alternative that works on Citrix

I recently developed a virtual keyboard application for a customer. The program is working fine with almost all programs, but certain commands like {ENTER} or {DEL} are not working with Citrix. Is ...
6
votes
1answer
135 views

Sending letter 'i' with SendKeys

I made an on screen keyboard with c# Windows Forms. I use Sendkeys.Send() function to send the keystrokes. All letters but the letter "i" works fine. When I press the letter "i" on the keyboard when ...
6
votes
2answers
129 views

Unable to send underscore with Sendkeys in C#?

I've been bored, so I tried to make a program that writes a Look of Disapproval smiley(the ಠ_ಠ face) when pressing ctrl+shift+L. Now everything works, except for the underscore that is in the smiley, ...
6
votes
2answers
472 views

Sending keystrokes to a program

In window form, I made a button and I'm trying to make it send F1 to a specific window (Such as FireFox, My Computer, etc...) My questions are : How do I do it by the window's name? (such as ...
6
votes
2answers
912 views

Make a form not focusable in C#

I'm wanting to write a virtual keyboard, like windows onscreen keyboard for touchscreen pcs. But I'm having problem with my virtual keyboard stealing the focus from the application being used. The ...
6
votes
4answers
747 views

Is there a sendKey for Mac in Python?

In Moc10.6, I want to put a active application to de-active, or minimize by Python I know I could use sendKey in Windows with Python, then what about in Mac? Thanks, guys!
6
votes
4answers
3k views

How to press the Windows button programmatically using C# SendKeys

Basically I want to simulate in code a user clicking on the windows button. I know there is SendKeys which allows me to send key presses to windows if I get a handle to them, but what I can't figure ...
6
votes
3answers
1k views

Sendkeys alternative for RDP and Remote Desktop

I have an application which injects keystrokes into applications via Sendkeys, unfortunatly the application will not work when I am running Remote Desktop, because of the well known issue that ...
5
votes
1answer
181 views

c# Pausing between sendkeys

I'm doing some automation on a Java-based web page that needs to do some validation between entries, so I thought I'd just do a Thread.Sleep between each SendKeys.Send, but for some reason it just ...
5
votes
1answer
290 views

Injecting commands by sending keystrokes to a command windows?

I have a command prompt window that runs a web based piece of software. I want to make a program in C# that injects commands into the running command prompt window. Any pointers? Thanks, Paul.
5
votes
2answers
340 views

Sending text/keystrokes to unselected window?

Is there a way to send keystrokes to a window that is not currently selected in C++? For example, if I have a notepad window minimized and want some text to be typed in it without bringing the window ...
5
votes
3answers
2k views

SendKeys Ctrl-A not working

I'm trying to send CTRL A (select all to an app in this case word but try as I might it doesn't work) I've tried quite a few combinations but all to no avail, any ideas? IntPtr appHandle = ...
4
votes
4answers
4k views

press save button of “File download dialog” of internet explorer via c#

I am working on internet explorer automation and part of it involves downloading files from a site whcih is hosted on asp 2.0 and uses forms based authentication, so to create end to end automation i ...
4
votes
4answers
2k views

C#: How to send keyboard scan codes manually?

I'm working on a project that needs to emulate a keypress of the Windows key. I've tried SendKeys.Send to no avail. Specifically, the windows key needs to come in concert with a button. That is, I ...
3
votes
1answer
289 views

C# Detecting Ctrl+V with RegisterHotKey but not intercepting it

I need to detect when a user presses Ctrl+V (regardless of window focus - my app will likely be minimised) but I must not stop the actual paste operation. I have tried a few things: (I am ...
3
votes
1answer
668 views

C# - How to send small letters with SHIFT key using SendKeys.Send?

I am using this keyboard hook for my project. I am unable to send small letters using SendKeys.Send() with SHIFT modifier key pressed. My app needs (for example) if the user presses K button "a" ...
3
votes
2answers
692 views

How to send arrow keys to Adobe Flash Player inside a Delphi TWebBrowser control?

I am using a TWebBrowser control inside a Delphi Pro 6 form (TForm) to view a YouTube video on YouTube's "leanback" interface page. I want to send arrow keys to the Flash Player that is playing the ...
3
votes
3answers
687 views

.NET sendkeys to calculator

The sendkeys code below works well for Notepad but it doesn't work for Calculator. What is the problem? (It's another problem compared to what I sent here ...
3
votes
1answer
606 views

Double key typing by SendKeys

I am having a weird problem with SendKeys.Send Basically what happens is this. I have Internet Explorer in focus at google.com and I call SendKeys.Send("TestSample\n"); it sometimes sends some keys ...
3
votes
1answer
2k views

How to SendKeys F12 from current .NET form/application

I am pretty sure the following button-activated form code should raise a Control-F12 in my C# application: SendKeys("^{F12}"); But it does not appear to go on up to the windows shell and activate ...
2
votes
1answer
40 views

C# // SendKeys.SendWait works only when process'es window is minimzed

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.ComponentModel; using System.Data; using System.Runtime.InteropServices; ...
2
votes
2answers
77 views

How to translate KeyCode to work at Keys.SendKey

is there a way to Translate a KeyCode in that way ,which will work if i use it at Keys.Sendkey(); private void Manager_KeyDown(object sender, KeyEventArgs e) { ...
2
votes
1answer
211 views

Selenium WebElement value empty after sending keys

I'm running some simple form tests where values are added fields. After each value is added to a field: input.SendKeys(value); I want to check the value in the field is correct. This may sound ...
2
votes
1answer
149 views

Special keys on keyboards

Is there a way for my program to be able to "fire" the special keys on my keyboard, such as the media keys (play, pause, next etc..). I'm trying to create an app that performs those functions and an ...
2
votes
1answer
440 views

C# How-to send ENTER from program?

i am beginer and i write this code and can't send ENTER click from webbrowser component on C#: private void start_submit_Click(object sender, EventArgs e) { XmlDocument xdoc = new XmlDocument(); ...
2
votes
1answer
640 views

Sendkeys from WPF application

I have an WPF full screen application and I configured Skype´s "Focus Skype" Hotkey to Ctrl+F6 combination. Now... How can I send this message to windows (Ctrl+F6)? I tried by sendkeys but is not ...
2
votes
1answer
195 views

Sending keys to a specific handle in C#?

I've been searching, and so far I've only found SendKeys, which works only for the active window. However, I don't want to force the window to become active. Does anyone know how I can send keystrokes ...
2
votes
2answers
498 views

Sending specific keys on the Numpad like +, -, / or Enter (simulating a keypress)

I am working on a project where it is necessary to simulate key-presses to cause specific behaviours in a different application. All is running well and fine, using the keybd_event function that is ...
2
votes
1answer
255 views

How can I use SendKeys at the windows 7 login window?

Ok so I'm making an arduino based physical login system for my computer. Basically I have a reed switch set up so that when it is tripped it sends some serial information to a python program and when ...
2
votes
3answers
6k views

Using AppActivate and Sendkeys in VBA shell command

I want to switch back and forth between application with the shell command in VBA. I am using SendKeys to do stuff in process A then move to process B, then to process A then process B. It works fine ...
2
votes
1answer
226 views

Sending key “hangs” PC in C#

My PC hangs when I send key in Form_Shown() and placing Breakpoint at Form_KeyDown() private void Form1_KeyDown(object sender, KeyEventArgs e) { //breakpoint here if (e.KeyCode == ...
2
votes
1answer
477 views

How to send unicode keys with c++ (keybd_event)

My friend is learning Norwegian and i want to make a global hot key program which sends keys such as æ ø å My problem is that keybd_event function wont allow me to send those keys, i seem to be ...
2
votes
1answer
745 views

Vb.net sendkeys, letters duplicate?

I created a simple test with SendKeys, and tried both SendWait and Send. Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click ...
2
votes
1answer
504 views

how do i send keystrokes to only one program?

i have been having a hard time to find anything that is usefull but i found someone asked how to do that,(http://stackoverflow.com/questions/2113950/how-to-send-keystrokes-to-a-window) if used the ...
2
votes
2answers
586 views

Sending keystrokes from a C# application to a Java application - strange behaviour?

I'm trying to send keystrokes from my C# program to a Java application The code for sendig keys is: private void SendKeysToWindow(string WindowName, string KeysToSend) { IntPtr hWnd = ...
2
votes
2answers
428 views

SendKeys failing after 2 runs in thread

Python and SendKeys import SendKeys, threading, pyHook, pythoncom class Auto(threading.Thread): def run(self): SendKeys.SendKeys("{ENTER}",pause=0.1); print('Sent'); exit(); def ...
2
votes
1answer
897 views

Alternative to SendKeys that does NOT require an unlocked session

Situation: A GUI app contains functionality (off a menu option) that produces a frequently updated image to a directory. A logged-in, running instance of the app is the ONLY source for this image ...
1
vote
1answer
94 views

Sending multiple keypresses WatiN

Ok so I am running tests in WatiN and I am using the SendKeys method. According to the MSDN website I can enter: System.Windows.Forms.SendKeys.SendWait("{LEFT 2}"); And this will enter left two ...
1
vote
1answer
130 views

Taking control of another application with sendkeys or window’s API is not working

I have tried to control another application to automate a process we do 100 times a day. It is simple enough, a few key strokes is all but I have been foiled in all attempts. ROUND 1: I have tried ...
1
vote
1answer
88 views

Free or Open Source WinForms UI scraping / automation library

Can you recommend a good C# / .NET library for UI scraping / manual test automation library. In fact, a UI scraping is secondary - a simple and easy to use library which simplifies the emulation user ...
1
vote
1answer
98 views

Does perl can send special keys such as F1 under Linux?

I want to run another script by "F1" from current perl script, How perl send such keys? Can anyone help me? thanks so much
1
vote
1answer
153 views

Unable to send the TAB key during a Selenium integration test

As part of a Selenium integration test, I wrote the two following lines in Ruby to simulate entering an e-mail address into a text field and "moving the focus away": @driver.find_element(:id, ...
1
vote
1answer
84 views

SendKeys::Send, going berserk

I am trying to make updates to two linked TextBoxes. I disable events in one and then send keystrokes using eg SendKeys::Send("A"); having first given it focus: texBox2->Focus(); ...
1
vote
2answers
106 views

how to send a “Ctrl+Break” to a subprocess via pid or handler

import subprocess proc = subprocess.Popen(['c:\windows\system32\ping.exe','127.0.0.1', '-t'],stdout=subprocess.PIPE) while True: line = proc.stdout.readline() print "ping result:", ...
1
vote
2answers
62 views

Game dosen't start when test pushes start button

I'm developing a 2D arcade game and writing tests (in a seperate Android JUnit Test Project). I need game running for some test methods. I wrote the following code: public void testGameStart() throws ...
1
vote
1answer
119 views

VB6 SendKeys problem

I am trying to create a button to enter "0" value into textbox. Private Sub cmd0_Click() PvCurPaidAmt.SetFocus PvCurPaidAmt.SelStart = Len(PvCurPaidAmt) + 1 PvCurPaidAmt.SelText = "0" End ...
1
vote
3answers
2k views

Can I do SendKeys in Javascript?

SendKeys is method to sending keystroke to an application. Can I do it in Javascript, to send keystroke in browser ? REF : http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx
1
vote
1answer
518 views

Send keyboard and mouse events to DirectX application in C#?

I need to send global keystrokes and mouse events to another application, which is coincidentally using using DirectX. (No controls/handles other than the window itself) For example, I need to hold ...
1
vote
1answer
221 views

How to send a single shift key with SendKeys?

I'm trying to automate a routine task with vbscript. It requires me first pressing a single shift and then input a string. How can I do that with SendKeys? If it can't be done, is there no way to ...
1
vote
2answers
325 views

A way to redirect keypresses from TWebBrowser to the ParentForm

First question. Help format it, if needed, please. Context I have a TWebBrowser in the main form that is used to behave like it was a printer. So I load some HTML text in it as user do some commands ...

1 2 3 4