hotkey

How to hijack the Caps Lock key for Cut, Copy, Paste keyboard operations

Here is what I am trying to accomplish: To Copy, press and release Caps Lock ONCE To Paste, press and release Caps Lock TWICE, quickly To Cut, press Ctrl+Caps Lock The reason I want to do this is often times i find my self looking down to press the correct X/C/V key, since they're all next to each other (atleast on a QWERTY keyboard)...

Change windows 7 hotkey or disable monitor orientation

Hi! Windows 7 (may be Vista too) has the hotkey to change display orientation (Ctrl+Alt+[Up, down, left, right]). This hotkey correlates with the one of my IDE. So I would like to disable windows's action on pressing. Does any body now how to disable it? ...

hook a hotkey from windows logon screen

hi i built a program that hooks the keyboard and when some hotkey pressed it openning the door (that connected to the COM1 serial port of the computer). this works fine, until i locking the computer (winkey+L). i want to be able to open the door with the same hotkey from the logon screen. i using Windows XP & C#. how do i do that? t...

Cocoa NSStatusBar Global HotKey

I have created an NSStatusBar cocoa application which sits in the system status bar. I want to assign a hotkey so that when pressed it toggles my applications and show the menu. Is this possible?, In my searching and experimenting I have found a few different ways of assigning global hot keys that can be pressed when your application i...

Ctrl+Enter jQuery in TEXTAREA

How do I trigger something when the cursor is within TEXTAREA and Ctrl+Enter is pressed? Using jQuery. Thanks ...

WPF hot key firing without modifier

I have a WPF window, which contains a button called Cancel. Under ordinary circumstances I want a user to be able to press Alt+C to cancel their actions and close the program. As such, the button is captioned "_Cancel." Problem 1: During Window_Load, if I press C without modifiers, the Cancel_Clicked event fires, and the program close...

Hidden login in website - looking for hotkey idea

I am developing a CMS. One of the greatest everyday annoyances when working with it is that when you are on a front-end page, not logged in, and want to make a change, you need to go to the back-end login first, log in, and then navigate to the page you want to change. I would like to introduce a smart little function that pops up a log...

Hotkey to scroll through method overload options in intellisense.

Is there a keyboard hot-key to scroll through multiple IntelliSense method overload options for Visual C# pro? I.e. do what the arrows do if you click on them in the pic below. ...

Is there a hot key for "go to test" in eclipse

In Netbeans there's "Navigate => go to test" which navigated to a class named currentClassTest if it existed (within the current maven structure). Anybody know if such exists in eclipse? Or how to setup a hot key for such? Sorry I'm somewhat of an eclipse newbie and this one escape google somehow. Thanks. ...

How to hook hotkeys in winforms or WPF from a .NET 2.0 assembly?

I have assembly that targets .NET 2.0 to be compatible with a broad range of applications. When used with a desktop application (either winforms or WPF) I want to hook certain hotkeys and popup modeless dialog windows. The tricky bit is finding a solution that can be implemented under .NET 2.0 that is compatible with WPF. For winforms...

resharper or VS hotkey to switch places two parameters, is there such a thing ?

it something like this method(a,b); and you hit some hotkey and you get method(b,a); is there such thing ? ...

AutoHotKey. Hotstrings and Auto-replace not working in Visual Studio 2008

Is it any possibility to persist work of Hotstrings in Visual Studio 2008. For instance, I want to get following results: "ras" => replace to runat="server" I use following script, which work in another application, except VS 2008. ::ras::runat="server" ...

How to intercept a hot key in Cocoa when the application window is not active

I am trying to create a utility that doesn't open a window when executed, and that would be activated from a hot key; I read that currently Cocoa doesn't have a function for that, and that I should use a deprecated Carbon function. Isn't there really a way to use global hot keys in Cocoa? What should I do: wait for Cocoa to introduce a ...

Adding an F5 Hotkey in C#

Hi, I'm making a windows app (WinForms) and would like my application to call a method when the user presses F5 - this should work no matter what the user is doing but they must be using the program - I don't want to use global hooks - any ideas? ...

Disable HotKeys When Typing - VB6

Hey guys, In my VB6 program, I have tons of hotkeys such as X, A, D... ETC . I also have a chat system in it, where everytime I use the characters X or A it will do the actions of those hotkeys. For example, if X was to close the application (not that it really does), when I am typing "fiXing" into my chat textbox, it will close the app...

How to comment a block in Eclipse?

Does Eclipse have a hot key to comment a block? and to uncomment a block? ...

Implementing Centralized Hotkey Handling/Processing

I'm working on a project where I need to implement customizable hotkeys across the application. There are a number of different forms and user controls that need to implement different subsets of hotkeys. I would like to implement all of the handling and processing in a central MessageFilter class. I want to have a base class that h...

How do I force IE to open a new Browser on custom hotkey?

I'm using AutoHotKey which is a program that lets me define my own hot keys. I have a hot key to open a link in IE. When I run the hot key command again the same window opens in the same browswer. I would like it to open in a new browser. I'm using "Run www.google.com", for example. Thanks. ...

.LNK File Shortcut Key no longer works if I press it while my C#, maximized, no border program is running

For a more general behavior probably caused by this problem please also read: http://stackoverflow.com/questions/2042925/shortcut-keys-defined-in-lnk-files-do-not-work-if-im-running-a-c-winforms-prog I'm writing a C# program, using .NET 2.0 and WinForms and Visual C# 2008 Express. I'm using Windows 7 but the problem is also under Windo...

Shortcut keys defined in .LNK files do not work if I'm running a C# WinForms program that has no border and it it maximized

To test this problem I wrote a simple C# program, using .NET 2.0 and WinForms and Visual C# 2008 Express. I'm using Windows 7 but the problem is also under Windows XP. Important: the FormBorderStyle property of the main form is set to None, and the WindowState to Maximized. The program does nothing special. When this program is running...