Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
14k views

How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF?

Does anyone have some sample code that will trap the CTRL+TAB and CTRL+SHIFT+TAB for a WPF application. We have created KeyDown events and also tried adding command bindings with input gestures but ...
7
votes
7answers
6k views

KeyDown : recognizing multiple keys

How can I determine in KeyDown that Ctrl + Up was pressed. private void listView1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up) { ...
6
votes
1answer
977 views

Override Caps Lock with Ctrl using C#

I'm writing (yet another, I know) keyboard remapper using C# and Visual Studio 2008. I followed this guide to learn how to snap up low-level key presses. This works just fine for overriding e.g. ...
5
votes
2answers
807 views

Detecting CTRL+V using AS3 in IE

I am not able to detect the keyboard event CTRL+V on a swf using AS3 in IE. It seems to trigger the default browser behavior, and im not able to do anything... Any workaround for this?
4
votes
4answers
530 views

.NET Simulate Ctrl+Alt+Del Sendkeys

all is said in the title, how can I simulate the combination Ctrl+Alt+DEL? I tried this: SendKeys.Send("^(%({DEL}))") SendKeys.Send("^(%{DEL})") SendKeys.Send("^%{DEL}") But none worked. I am ...
3
votes
2answers
80 views

How is Ctrl-C message delivered to a process runnning on windows?

I created a C# console application to handle Ctrl-C by subscribing it to Console.CancelKeyPress event. When I executed (debug version) the application, there were 14 threads already created in the ...
3
votes
2answers
957 views

Control zoom level of WinForms using mouse sroll wheel and Ctrl in VB.NET

If I have a winform, may I know how can I control the zoom level of the font in the application (as well as the application window itself obviously) by using Ctrl + Mouse Scroll Wheel? I see there is ...
3
votes
1answer
433 views

ctrl+click or shift+click not always firing the onclick event

I recently discovered that different browsers handle the onclick event differently when the control of shift key is pressed. Same thing for following links with the middle mouse button. <a ...
2
votes
1answer
23 views

Live compiler checks when developing and CTRL clicks in Visual Studio 2010?

I'm working from home and can't reach the server where my Resharper license is hosted, so Resharper is not working at the moment. Without Resharper I don't see any develepment time compiler checks. ...
2
votes
2answers
270 views

Notepad++ plugin for Ctrl+click to method

Hi all I use many text editors but mainly notepad++ and I search for functionality similar to Komodo Edit. You can hold Ctrl button and click on a method and property and it jump to its definition. ...
2
votes
3answers
621 views

jquery: keydown, keyup, small snippet, why isn't this working?

Why isn't this working? var holdingctrl = false; $(document).keydown("q",function(e) { if(holdingctrl == true) alert("Holding CTRL and pressing Q: Success."); e.preventDefault(); }); ...
2
votes
5answers
904 views

IE 7 CTRL + click opens a new window - how to suppress it?

Is it possible to suppress the default IE 7 functionality when CTRL+click on link opens a new window? if so, how? Thanks!
2
votes
1answer
718 views

How to capture CTRL + CTRL key presses in my Win32 application?

How would I capture the user pressing CTRL twice (CTRL + CTRL) globally. I want to be able to have my application window hidden and then make it visible when the user invokes it with the CTRL+CTRL key ...
2
votes
2answers
180 views

How do I hook in to a double-press of the Ctrl key?

What I'm looking for is functionality similar to Google desktop. When you hit Ctrl twice rapidly, a little search box pops up. I've tried using a fairly heavy keyboard hook class that I found ...
2
votes
2answers
690 views

How can I set and restore FPU CTRL registers?

I can reset FPU's CTRL registers with this: http://support.microsoft.com/kb/326219 But how can I save current registers, and restore them later? It's from .net code.. What I'm doing, is from ...
1
vote
4answers
611 views

CTRL-C==SIGINT. CTRL-X==?

On Linux/Unix there are signals. The Ctrl-C one (SIGINT) is obvious to me. Now, in some other applications there are signals via Ctrl-X?! Is that even a signal or does it generate an escape sequence? ...
1
vote
1answer
146 views

Ctrl +c and Backspace on Google Chrome

I have an application in which I am listening for KeyPress events in an iFrame. On Google Chrome and IE, CTRL+C and backspace never trigger the key press event. Backspace takes me to the previous page ...
1
vote
2answers
143 views

Perl CTRL-D equivalent in PHP?

I'm trying to represent the following Perl line in PHP: $msg="!<connect_nettapi>\cD"; # Message ends with CTRL-D I'm sending this string over a socket and the receiving API requires that the ...
1
vote
1answer
212 views

Shift+Click Event Woes

I'm sure i'm doing something terribly stupid for this not to work, but I can't get my shift event to fire. I've tried both: $('.ShowCannedReport_UserFilterDropdown').each(function (index, element) { ...
1
vote
1answer
208 views

how to change the modifier key from cmd to ctrl in IntelliJ at a Mac?

how to change the modifier key from cmd to ctrl in IntelliJ at a Mac? I have changed it system wide but it hasn't changed in intellij.
1
vote
2answers
296 views

vim mapping ctrl-;

In my case the move-right button is ; I want ctrl-; to move the cursor 7 characters to the right. the below .vimrc mapping doesn't work: nmap <c-;> 7; what's wrong?
1
vote
2answers
2k views

How to assign shortcut key (something like Ctrl+F) to text box in windows form?

I am building a tool using C#. It's a Windows application. I have one text box on a form and I want to assign focus to that text box when user presses Ctrl + F or Ctrl + S. Can anyone please tell me ...
1
vote
3answers
2k views

Clicking HyperLinks in a RichTextBox without holding down CTRL - WPF

I have a WPF RichTextBox with isReadOnly set to True. I would like users to be able to click on HyperLinks contained within the RTB, without them having to hold down CTRL. The Click event on the ...
0
votes
0answers
11 views

“ctrl-c” a fortran program that was started by python using f2py

I'm using python to call some fortran subroutines through the use of f2py. I would like to know how can I pass the "ctrl-c" signal to these subroutines, in order to cancel their execution whenever I ...
0
votes
1answer
42 views

sending control charactors to external process in Java

I am connecting to "/bin/bash" in ubuntu using: process = Runtime.getRuntime().exec(cmd); Here cmd is a String with different commands that i read and write from process. Now i have come across a ...
0
votes
3answers
45 views

Javascript code to press CTRL+TAB?

since there's no way of moving to the next tab using javascript, is there a code which presses CTRL + Tab so it'd move to the next tab?. Thanks in advance.
0
votes
0answers
54 views

Override cursor behavior while drag&drop operation in WPF

Problem: when I drag the element in WPF application and press the ctrl key while dragging then the mouse cursor changes from "move" to "suppress" icon. Is there a way to override this behavior so that ...
0
votes
3answers
310 views

Triggering Ctrl S or Ctrl P via a button

Ok now I am aware that you can listen to keypresses (keydowns keyups etc...) but I would like to TRIGGER a keypress. Like as if the user presses CTRL+S to save. Short question is, is it possible to ...
0
votes
0answers
234 views

catching ctrl-S in silverlight 4

I'm trying to capture ctrl-s in my application. I used the technique given in this video http://www.silverlight.net/learn/videos/all/keyboard-control/#topofcomments and added code like private void ...
0
votes
3answers
464 views

Ctrl+Space changes keyboard instead of showing Intellisense's Auto-complete list on Visual Studio 2010

I noticed that unexpectedly Visual Studio 2010 changed the keyboard layout.I tried some solutions like: - Going to Windows' Control Panel and removing other languages - Going to Menu Tools > ...
0
votes
1answer
77 views

Hooking CTRL pressed in GTK+ application

How can I hook CTRL pressed in "drawingarea_button_press_event_cb" function of GTK+ application? void drawingarea_button_press_event_cb( GtkWidget *widget, GdkEventButton *event ) { ........ }
0
votes
1answer
584 views

C# - Capturing CTRL-Mouse wheel in WebBrowser control

I'm developing a Windows Forms application in C# with an embedded WebBrowser control to "dummy-proof" (i.e. disable context menus, back button, free navigation, etc.) access to a third-party web ...
0
votes
2answers
670 views

Python - Using os.popen() to parse Unix “ls” - Problems with Killing Child Process

From my understanding, os.popen() opens a pipe within Python and initiates a new sub process. I have a problem when I run a for loop in conjunction with os.popen(). I can't seem to CTRL+C out of the ...
0
votes
2answers
1k views

Threading multiple WebBrowser in VB .net

I'm building a multiple webbrowser inside tabs( 1 predefine webbrowser control per tab) and I want them all to load at the same time or other words must run in thread. Unfortunately I feel a valid ...
-1
votes
1answer
376 views

Sending ctrl+C over serial port in C#?

How can I send my device ctrl+c through serial port in C#?
-1
votes
1answer
365 views

Disable ctrl + mouse scroll

How can I disable ctr + mouse scroll on web page with jquery? I want to disable zoom in and zoom out on my web page! Thax :)
-4
votes
2answers
48 views

Need to disable an array of ctrl keys for my site

Especially ctrl I , which is "mail this page". I'm using wordpress self hosted. So far I've found this code, not sure how to implement it or if it's old. Please no plethora of reasons as to why you ...