Linked Questions

3 votes
1 answer
10k views

I've been trying to send a focused window to the second monitor using the keyboard combination keys Shift+Win+LEFT using sendkeys in c#, but for some reason the window isn't moving to the second ...
user9223088's user avatar
6 votes
4 answers
65k views

I am trying to write a simple script that will send the key combo of CTRL+WINDOWS KEY+TAB. The code below sends the keys CTRL+ALT+TAB Set WshShell = WScript.CreateObject("WScript.Shell") WshShell....
daniel11's user avatar
  • 2,041
4 votes
1 answer
6k views

In powershell I'm using [System.Windows.Forms.SendKeys] to send keystrokes. However I'm having trouble emulating the windows key. Since it isn't one of the keys I found in the list in the docs: https:...
Willem van der Veen's user avatar
4 votes
2 answers
5k views

I would like to move my browser window to the left or right side of the screen. Manually I would press[WINDOW] + [LeftArrow] (or [RightArrow]) to achieve this. I've read this one but it's for Java (...
Pierre's user avatar
  • 605
1 vote
2 answers
5k views

private void Form1_Load(object sender, EventArgs e) { if (count == 2) { MessageBox.Show("Congrats You Score is : " + Marks, "Result", MessageBoxButtons.OK); ...
AAB's user avatar
  • 1,654
1 vote
1 answer
3k views

I am using Global send keys event in Blueprism and need to press Windows button. For example Control key is {CTRL}. What is the syntax for Windows key? Does anyone have the full list of keystrokes ...
Vivek's user avatar
  • 55
-1 votes
1 answer
830 views

I'm trying to make a software in c# that needs to sendkeys.send the windows key and l how would i do this ive tried sendkeys.send(keys.lwin); but that doesn't work
MEZYPLAYS's user avatar
2 votes
1 answer
711 views

I am working on a networked system (in C#) where on one computer I receive keyboard input via a low level hook and then transmit the input to another computer where it has to be injected. The hook ...
Harald's user avatar
  • 1,037
1 vote
1 answer
257 views

Is it possible to emulate key presses with a windows service? For example say I have a service running in the background that anytime a trigger occurs for example the trigger could be it's 2:00PM ...
user541597's user avatar
  • 4,385
0 votes
0 answers
94 views

So I wanted to close toast notification. Press Shift + Win + V move the focus to the notification. Then, Delete to dismiss it I am wondering if C# or VB.net can achieve this without using 3rd party ...
Eric's user avatar
  • 83
0 votes
0 answers
33 views

I am working with Textbox to convert characters. I needed to press 'Oem3(192 in keys enum)' key automatically. I tried sendkeys(), but I cannot find that key. What can I do to send that key to textbox?...
ChanHyok Park's user avatar