hotkey

c# Using WPF and .net 3.5, how can i register a global hot key to say CTRL+SHIFT+(LETTER)

Im building an app in c# using WPF and i need it to bind to some keys. Ive found some links but not work well with my setup. Anyone done this before? also if i could bind to the windows key would be great. ...

is there a way for my binary to react to some global hotkeys in linux ?

Is it possible to listen for a certain hotkey ( e.g:Ctrl-I ) and then perform a specific action ? My application is written in C , will only run on Linux , and it doesn't have a GUI . Are there any libraries that help with this kind of task ? EDIT:as an example,amarok has global shortcuts , so for example if you map a combination of key...

How do I hotkey directly to File Search tab in eclipse

When I use CTRL+h I end up on the Java Search tab. I would very much like a shortcut to go directly to filesearch instead. Is that possible? EDIT: It turns out that there exists a general preference - "Keys" - where you give "File search" a hot key. Eclipse Ganymede doesnt have any "include unbound commands" checkbox, but that doesnt ...

What is your favorite hot-key in Eclipse?

I've been using Visual Studio with Re-Sharper for the past few years and have recently taken a gig at a Java shop where we use Eclipse. Googling for Eclipse hotkeys has returned a bunch of 'Top 10 Hot-Key' posts, but that's about it. What are your favorite hotkeys? And which are essential? ...

Control for getting hotkeys like tab and space

I have a dialog box that allows users to set hotkeys for use in a 3d program on windows. I'm using CHotKeyCtrl, which is pretty good, but doesn't handle some keys that the users would like to use - specifically, tab and space. The hotkey handling is smart enough to be able to fire on those keys, I just need a UI to let them be set. A...

Automatic namespaces import

Is there a way in Visual Studio (a hotkey) to automatically import a type (or choosing between known namespaces) like the CTRL+O in Eclipse? ...

What is your favorite hot-key in Netbeans?

Following the topic http://stackoverflow.com/questions/98220/what-is-your-favorite-hot-key-in-eclipse , what is your favorite hot-keys in Netbeans? ...

Hotkeys override

Difficult question. The answer is probably no, if all I found in the Intertubes is right, but it is worth a try. I need to override the CTRL+SHIFT+ESC and the CTRL+ESC combinations. It would be good to be able to override the WIN key combinations, but I have a low level hook that does such, I only wish I didn't need it. If I can manage t...

Copy and Modify selected text in different application.

I have a windows application running at the backend. I have functions in this applications mapped to hot keys. Like if i put a message box into this function and give hot key as Alt+Ctl+D. then on pressing Alt, Ctrl and D together the message box comes up. My application is working fine till this point. Now i want to write a code insid...

Transforming selected text with a hotkey

I have this code: myVariable which I want to change into trace("myVariable: " + myVariable); using a direct hotkey like "alt-f12" to do it. I.e not using "ctrl-space" and arrow buttons. is it possible in eclipse? ...

THotkey with win-key support?

Hi all, Is there anyway to get the THotkey component in delphi to support the windows key? Or does anyone know of a component that can do this? Thanks heaps! ...

Reenable (windows)keys after another program has disabled it

Quake3 has disabled the alt and windows keys. Is there any way to reenable them even while quake3 is running? I need those keys even while i have the game open. They way i think it works is that the game registers a hotkey using RegisterHotKey and then set the handled property to true every time the key is pressed. So if you use UnRegis...

How to copy line in XAML editor?

In Visual Studio.NET when coding I constantly use (no selection) CTRL-C, CTRL-V to make a quick copy of a line. Unfortunately this works differently in the XAML editor (it pastes the new line in the middle of the current line). Does anyone know the hotkey to copy a line in XAML? ...

How do I hook global shortcuts in Windows?

I remember using a program, some years back, that allowed me to fine-tune my monitor's settings with custom gamma ramps and other adjustments. It had the ability to create different screen-settings profiles for different uses, and setup global hotkey shortcuts to activate them without switching out of the program you're in. My question...

How send WM_HOTKEY with PostMessage?

I want to send WM_HOTKEY to be captured by other application using a global desktop HotShortCut. The expected Keys are CTRL + F10 This is the only way I found to trigger the capture of WM_HOTKEY: procedure TfmMain.ButtonTalkClick(Sender: TObject); var Article: TArticleBase; Msg: TMessage; begin Article:= GetSelectedArticle; if...

Is there away to have vs2008 collapse nested classes?

I'd like to be able to collapse (with the default chord ctrl+m, ctrl+o) the following class Foo { string Test { get; set; } string Test2 { get; set; } class Bar { string Test3 { get; set; } string Test4 { get; set; } } } To class Foo { string Test { get; set; } string Test2 { get; set; } ...

.NET Equivalent for Hotkey Control

What is the .NET equivalent for the Hotkey Control? ...

VMware Workstation overrides VS2008 hotkeys

I recently installed VMware Workstation on my computer, and it is causing me some trouble. I'm used to pressing F6 to build in VS2008, but Workstation keeps replacing the hotkey for build with Ctrl+Alt+B, and assigning its own hotkey to F6. Every time I change the hotkey back and restart VS, VMware messes it up again. How do I get my hot...

How to programmatically detect a system hotkey?

I'm looking for a way to programmatically detect hotkeys in the system. My app supports configurable hotkeys to do different things, and I'd like to be able to tell if another app has snagged one already or it's a built-in Windows hotkey (like Win-L to lock the workstation). And if it is another app that owns the hotkey, I'd like to be ...

Java desktop app: How to maximize tray application when hotkey pressed?

I need to write a program that, when minimized, lives in the System Tray, and I'll use Java 6's SystemTray API to do that. How can I make that application comes to the foreground when the user presses some hotkey? For example, the app is running but minimized. When the user presses CTRL-SHIFT-Y or something (or, like Google Desktop's ...