Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
41 views

Shortcut key for refactoring menu (rename, “using”, etc.) in Visual Studio 2008?

Is there any way to bind a keyboard shortcut to first option in the refactoring menu that appears automatically while you're coding in Visual Studio 2008?
3
votes
4answers
770 views

Set global hotkey with Python 2.6

I wanna setup a global hotkey in python 2.6 that listens to the keyboard shortcut ctrl + D or ctrl + alt + D on windows, please help me
3
votes
2answers
1k views

Setting the Windows Forms ToolStripMenuItem ShortcutKeys property to numpad key does not work

We have the ability to define shortcut keys for Windows Forms application menu items. That way I can tell a menu item File->Save to have the shortcut key Ctrl + S and the menu item's handler is ...
1
vote
1answer
134 views

Is it possible to disable Ctrl+V in windows?

How can i disable Ctrl+V shortcut-key in windows and handle it by my own application? Actually , i want to ignore it and send another key instead of Ctrl+V.
1
vote
1answer
200 views

How to jump to counterpart definition of current method in Xcode4 with shortcut key?

If a class defined as like this, // A.h @interface A - (void)m1; // I want to jumpt to here directly. @end // A.m @implementation - (void)m1 { // Caret here. } @end I editor caret is places in ...
1
vote
1answer
495 views

Disable windows shortcut keys using C# or Java application

I need some tips in how can I disable shortcut keys in Windows, while running an application. I need simple application, which when is started all the shortcut keys are disabled, including ...
1
vote
1answer
636 views

DataGridView - Shortcut Keys Vs MouseClick for Cell Focus

I've a weird situation while keyboard shortcuts of a button along with datagridview is used. Here is the explanation: I've a winform in which there is a datagridview and a save button. Save button ...
1
vote
1answer
783 views

Set Shortcut key for ToggleButton with Image content

I've created a ToggleButton to show and hide a piece of UI and I've sent its Content to an icon. I now want to add a shortcut key to the ToggleButton but I'm unsure how to do with without binding a ...
1
vote
1answer
938 views

Eclipse shortcut to comment selection in an XML file

I am looking for a way to comment the current selection in an xml file in eclipse (STS 2.3.2). ctrl+/ gets seems to get ignored when editing XML. Google left me on my own.
1
vote
2answers
120 views

How to find shortcut exist on page using jquery?

I added shortcut key on my control using jquery. $(function() { shortcut.add("ctrl+r", function() { SomeFunctionHere(); }); }); how can i find that this key already added in my control? ...
1
vote
2answers
1k views

What is the difference between a keyboard accelerator and a shortcut key?

What is the difference between a keyboard accelerator and a shortcut key?
0
votes
1answer
50 views

Eclipse Shortcut Key for Color and Fonts -> Basic -> Text Font

I often change the font size of my editor. So does anyone know a shortcut key for that? Until now I have to use the menu with several clicks: Preferences -> Color and Fonts -> Basic -> Text Font. ...
0
votes
0answers
74 views

What is the behaviour of Access key in WPF?

I have an application, where I am providing Access key(Alt + Key) as a shortcut. It is working fine. The problem is :Consider I have one combo box and button. I have set one access key to button, say ...
0
votes
1answer
315 views

Eclipse shortcut key for replace special characters by unicode escape sequence

Is there a shortcut key in Ecplise that allows to replace an special character (accented) by its unicode escape sequence (\uXXXX)?
0
votes
1answer
336 views

vb.net DataGridView - Replace Shortcut Key with typed character

I have the problem that the DataGridView has obviously a shortcut key for SHIFT + SPACE which seems to select the row. What I would like to have is that pressing SHIFT + SPACE simply adds a space ...
0
votes
1answer
651 views

Shortcut keys on ContextMenuStrip

Hello i have added ContextManuStrip to TreeList. ContextManuStrip has some ToolStripMenuItems, i have implemented their "Click" events and everything works fine. Now in designer i added ...